[coreboot] [commit] r5017 - trunk/src/southbridge/intel/i82801gx

svn at coreboot.org svn at coreboot.org
Sat Jan 16 17:37:27 CET 2010


Author: stepan
Date: 2010-01-16 17:37:27 +0100 (Sat, 16 Jan 2010)
New Revision: 5017

Modified:
   trunk/src/southbridge/intel/i82801gx/cmos_failover.c
Log:
(trivial) cosmetics for i82801gx cmos failover.
Signed-off-by: Stefan Reinauer <stepan at coresystems.de>
Acked-by: Stefan Reinauer <stepan at coresystems.de>



Modified: trunk/src/southbridge/intel/i82801gx/cmos_failover.c
===================================================================
--- trunk/src/southbridge/intel/i82801gx/cmos_failover.c	2010-01-16 16:35:38 UTC (rev 5016)
+++ trunk/src/southbridge/intel/i82801gx/cmos_failover.c	2010-01-16 16:37:27 UTC (rev 5017)
@@ -20,13 +20,12 @@
 
 #include "i82801gx.h"
 
-#define RTC_FAILED    (1 <<2)
-#define GEN_PMCON_3     0xa4
+#define RTC_FAILED	(1 << 2)
+#define GEN_PMCON_3	0xa4
 
 static void check_cmos_failed(void)
 {
-	u8 byte;
-	byte = pci_read_config8(PCI_DEV(0, 0x1f, 0), GEN_PMCON_3);
+	u8 byte = pci_read_config8(PCI_DEV(0, 0x1f, 0), GEN_PMCON_3);
 	if (byte & RTC_FAILED) {
 		// clear bit 1 and bit 2
 		byte = cmos_read(RTC_BOOT_BYTE);





More information about the coreboot mailing list