(trivial) cosmetics for i82801gx cmos failover.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5017 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
67cd802990
commit
38c9965977
1 changed files with 3 additions and 4 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue