Since some people disapprove of white space cleanups mixed in regular commits
[coreboot.git] / src / northbridge / intel / i855 / reset_test.c
index b48b4a3764c6682207ad7ad48d759cdb7f617401..40f2f8997309cf7415b5ff90127a88ce6c429ae1 100644 (file)
 static int bios_reset_detected(void)
 {
        uint32_t dword;
-       
+
        dword = pci_read_config32(PCI_DEV(0, 0, 0), MCH_DRC);
-       
+
        if( (dword & DRC_DONE) != 0 ) {
                return 1;
-       } 
-       
+       }
+
        return 0;
 }