Simplify a few code chunks, fix whitespace and indentation.
[coreboot.git] / src / mainboard / supermicro / x6dai_g / romstage.c
index b95bbc9ebf4409811785154683b014ae69dc56f1..2873d8af994dcbda705de3c1d83ce5b9b5d8a77f 100644 (file)
@@ -60,9 +60,8 @@ static void main(unsigned long bist)
        if (bist == 0) {
                /* Skip this if there was a built in self test failure */
                early_mtrr_init();
-               if (memory_initialized()) {
+               if (memory_initialized())
                        skip_romstage();
-               }
        }
 
        /* Setup the console */
@@ -77,16 +76,13 @@ static void main(unsigned long bist)
        /* config LPC decode for flash memory access */
         device_t dev;
         dev = pci_locate_device(PCI_ID(0x8086, 0x25a1), 0);
-        if (dev == PCI_DEV_INVALID) {
+        if (dev == PCI_DEV_INVALID)
                 die("Missing 6300ESB?");
-        }
         pci_write_config32(dev, 0xe8, 0x00000000);
         pci_write_config8(dev, 0xf0, 0x00);
 
 #if 0
        display_cpuid_update_microcode();
-#endif
-#if 0
        print_pci_devices();
 #endif
 #if 1
@@ -94,9 +90,8 @@ static void main(unsigned long bist)
 #endif
 #if 0
        int i;
-       for(i = 0; i < 1; i++) {
+       for(i = 0; i < 1; i++)
                dump_spd_registers();
-       }
 #endif
        disable_watchdogs();
        sdram_initialize(ARRAY_SIZE(mch), mch);