some ifdef --> if fixes
authorStefan Reinauer <stefan.reinauer@coreboot.org>
Thu, 21 Apr 2011 20:24:43 +0000 (20:24 +0000)
committerStefan Reinauer <stepan@openbios.org>
Thu, 21 Apr 2011 20:24:43 +0000 (20:24 +0000)
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Acked-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6535 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

18 files changed:
src/Kconfig.deprecated_options
src/arch/x86/boot/coreboot_table.c
src/arch/x86/include/arch/interrupt.h
src/devices/oprom/yabel/device.c
src/devices/oprom/yabel/interrupt.c
src/devices/oprom/yabel/io.c
src/devices/oprom/yabel/mem.c
src/devices/pci_rom.c
src/devices/pciexp_device.c
src/include/cpu/x86/mtrr.h
src/mainboard/kontron/986lcd-m/mainboard.c
src/northbridge/intel/i82830/smihandler.c
src/northbridge/intel/i82830/vga.c
src/northbridge/intel/i945/raminit.c
src/southbridge/via/k8t890/early_car.c
src/southbridge/via/vt8237r/lpc.c
src/superio/ite/it8716f/it8716f.h
src/superio/ite/it8716f/superio.c

index aa32d0d864f630ef9189c18b50c1be83621330be..d83525e541b2101263083f2cc4a560a148dcfdba 100644 (file)
@@ -51,4 +51,14 @@ config DRIVERS_PS2_KEYBOARD
          this option, then you can say N here to speed up boot time.
          Otherwise say Y.
 
+# This was a config option for a long time, but it never showed up in Kconfig.
+# It should go away and "tuning" should always be enabled when PCIe is there,
+# or it should be more fine grained (ie. Enable PCIe ASPM)
+config PCIE_TUNING
+       bool
+       default n
+       help
+         This variable enables certain PCIe optimizations. Right now it's
+         only ASPM and it's untested.
+
 endmenu
index 8e7c75eaa12d111d819edec7058c5cfdaf3b9957..634cefd4392cc85e94651e100b5ebd5fb3870613 100644 (file)
@@ -145,7 +145,7 @@ static void lb_console(struct lb_header *header)
 
 static void lb_framebuffer(struct lb_header *header)
 {
-#if defined(CONFIG_BOOTSPLASH) && CONFIG_BOOTSPLASH && CONFIG_COREBOOT_KEEP_FRAMEBUFFER
+#if CONFIG_BOOTSPLASH && CONFIG_COREBOOT_KEEP_FRAMEBUFFER
        void fill_lb_framebuffer(struct lb_framebuffer *framebuffer);
 
        struct lb_framebuffer *framebuffer;
index c3cda309b92430b7436af63e648b477139afe809..83821f47e6d57b828029d9d0b675880db9c11f03 100644 (file)
@@ -22,7 +22,7 @@
 #include "registers.h"
 
 /* setup interrupt handlers for mainboard */
-#if defined(CONFIG_PCI_OPTION_ROM_RUN_REALMODE) && CONFIG_PCI_OPTION_ROM_RUN_REALMODE
+#if CONFIG_PCI_OPTION_ROM_RUN_REALMODE
 extern void mainboard_interrupt_handlers(int intXX, void *intXX_func);
 #else
 static inline void mainboard_interrupt_handlers(int intXX, void *intXX_func) { }
index dd078c72c6ab0d3f8c1c54f463292fd454589cb5..82595945a8909ae3523e1c7713aff0710cbb2b87 100644 (file)
@@ -37,7 +37,7 @@ typedef struct {
        u64 size;
 } __attribute__ ((__packed__)) assigned_address_t;
 
-#ifdef CONFIG_PCI_OPTION_ROM_RUN_YABEL
+#if CONFIG_PCI_OPTION_ROM_RUN_YABEL
 /* coreboot version */
 
 static void
@@ -110,7 +110,7 @@ biosemu_dev_get_addr_info(void)
        }
        // store last entry index of translate_address_array
        taa_last_entry = taa_index - 1;
-#if defined(CONFIG_X86EMU_DEBUG) && CONFIG_X86EMU_DEBUG
+#if CONFIG_X86EMU_DEBUG
        //dump translate_address_array
        printf("translate_address_array: \n");
        translate_address_t ta;
@@ -194,7 +194,7 @@ biosemu_dev_get_addr_info(void)
        }
        // store last entry index of translate_address_array
        taa_last_entry = taa_index - 1;
-#if defined(CONFIG_X86EMU_DEBUG) && CONFIG_X86EMU_DEBUG
+#if CONFIG_X86EMU_DEBUG
        //dump translate_address_array
        printf("translate_address_array: \n");
        translate_address_t ta;
@@ -226,7 +226,7 @@ biosemu_add_special_memory(u32 start, u32 size)
        translate_address_array[taa_index].address_offset = 0;
 }
 
-#ifndef CONFIG_PCI_OPTION_ROM_RUN_YABEL
+#if !CONFIG_PCI_OPTION_ROM_RUN_YABEL
 // to simulate accesses to legacy VGA Memory (0xA0000-0xBFFFF)
 // we look for the first prefetchable memory BAR, if no prefetchable BAR found,
 // we use the first memory BAR
@@ -288,7 +288,7 @@ biosemu_dev_get_device_vendor_id(void)
 {
 
        u32 pci_config_0;
-#ifdef CONFIG_PCI_OPTION_ROM_RUN_YABEL
+#if CONFIG_PCI_OPTION_ROM_RUN_YABEL
        pci_config_0 = pci_read_config32(bios_device.dev, 0x0);
 #else
        pci_config_0 =
@@ -350,7 +350,7 @@ biosemu_dev_check_exprom(unsigned long rom_base_addr)
                memcpy(&pci_ds, (void *) (rom_base_addr + pci_ds_offset),
                       sizeof(pci_ds));
                clr_ci();
-#if defined(CONFIG_X86EMU_DEBUG) && CONFIG_X86EMU_DEBUG
+#if CONFIG_X86EMU_DEBUG
                DEBUG_PRINTF("PCI Data Structure @%lx:\n",
                             rom_base_addr + pci_ds_offset);
                dump((void *) &pci_ds, sizeof(pci_ds));
@@ -412,7 +412,7 @@ biosemu_dev_init(struct device * device)
        DEBUG_PRINTF("%s\n", __func__);
        memset(&bios_device, 0, sizeof(bios_device));
 
-#ifndef CONFIG_PCI_OPTION_ROM_RUN_YABEL
+#if !CONFIG_PCI_OPTION_ROM_RUN_YABEL
        bios_device.ihandle = of_open(device_name);
        if (bios_device.ihandle == 0) {
                DEBUG_PRINTF("%s is no valid device!\n", device_name);
@@ -423,7 +423,7 @@ biosemu_dev_init(struct device * device)
        bios_device.dev = device;
 #endif
        biosemu_dev_get_addr_info();
-#ifndef CONFIG_PCI_OPTION_ROM_RUN_YABEL
+#if !CONFIG_PCI_OPTION_ROM_RUN_YABEL
        biosemu_dev_find_vmem_addr();
        biosemu_dev_get_puid();
 #endif
@@ -440,7 +440,7 @@ biosemu_dev_translate_address(int type, unsigned long * addr)
 {
        int i = 0;
        translate_address_t ta;
-#ifndef CONFIG_PCI_OPTION_ROM_RUN_YABEL
+#if !CONFIG_PCI_OPTION_ROM_RUN_YABEL
        /* we dont need this hack for coreboot... we can access legacy areas */
        //check if it is an access to legacy VGA Mem... if it is, map the address
        //to the vmem BAR and then translate it...
index af79379f6747bf1cd67458d2a6456f29702b9121..e5b4a3cff44afed2ebb9186dc3e72f252ee2ea70 100644 (file)
@@ -24,7 +24,7 @@
 #include <x86emu/x86emu.h>
 #include "../x86emu/prim_ops.h"
 
-#ifdef CONFIG_PCI_OPTION_ROM_RUN_YABEL
+#if CONFIG_PCI_OPTION_ROM_RUN_YABEL
 #include <device/pci.h>
 #include <device/pci_ops.h>
 #endif
@@ -343,7 +343,7 @@ handleInt1a(void)
                DEBUG_PRINTF_INTR("%s(): function: %x: PCI Find Device\n",
                                  __func__, M.x86.R_AX);
                /* FixME: support SI != 0 */
-#if defined(CONFIG_YABEL_PCI_ACCESS_OTHER_DEVICES) && CONFIG_YABEL_PCI_ACCESS_OTHER_DEVICES==1
+#if CONFIG_YABEL_PCI_ACCESS_OTHER_DEVICES
                dev = dev_find_device(M.x86.R_DX, M.x86.R_CX, 0);
                if (dev != 0) {
                        DEBUG_PRINTF_INTR
@@ -384,7 +384,7 @@ handleInt1a(void)
                offs = M.x86.R_DI;
                DEBUG_PRINTF_INTR("%s(): function: %x: PCI Config Read from device: bus: %02x, devfn: %02x, offset: %02x\n",
                                  __func__, M.x86.R_AX, bus, devfn, offs);
-#if defined(CONFIG_YABEL_PCI_ACCESS_OTHER_DEVICES) && CONFIG_YABEL_PCI_ACCESS_OTHER_DEVICES==1
+#if CONFIG_YABEL_PCI_ACCESS_OTHER_DEVICES
                dev = dev_find_slot(bus, devfn);
                DEBUG_PRINTF_INTR("%s(): function: %x: dev_find_slot() returned: %s\n",
                                  __func__, M.x86.R_AX, dev_path(dev));
@@ -408,7 +408,7 @@ handleInt1a(void)
                        switch (M.x86.R_AX) {
                        case 0xb108:
                                M.x86.R_CL =
-#ifdef CONFIG_PCI_OPTION_ROM_RUN_YABEL
+#if CONFIG_PCI_OPTION_ROM_RUN_YABEL
                                        pci_read_config8(dev, offs);
 #else
                                    (u8) rtas_pci_config_read(bios_device.
@@ -423,7 +423,7 @@ handleInt1a(void)
                                break;
                        case 0xb109:
                                M.x86.R_CX =
-#ifdef CONFIG_PCI_OPTION_ROM_RUN_YABEL
+#if CONFIG_PCI_OPTION_ROM_RUN_YABEL
                                        pci_read_config16(dev, offs);
 #else
                                    (u16) rtas_pci_config_read(bios_device.
@@ -438,7 +438,7 @@ handleInt1a(void)
                                break;
                        case 0xb10a:
                                M.x86.R_ECX =
-#ifdef CONFIG_PCI_OPTION_ROM_RUN_YABEL
+#if CONFIG_PCI_OPTION_ROM_RUN_YABEL
                                        pci_read_config32(dev, offs);
 #else
                                    (u32) rtas_pci_config_read(bios_device.
@@ -476,7 +476,7 @@ handleInt1a(void)
                } else {
                        switch (M.x86.R_AX) {
                        case 0xb10b:
-#ifdef CONFIG_PCI_OPTION_ROM_RUN_YABEL
+#if CONFIG_PCI_OPTION_ROM_RUN_YABEL
                                        pci_write_config8(bios_device.dev, offs, M.x86.R_CL);
 #else
                                rtas_pci_config_write(bios_device.puid, 1, bus,
@@ -488,7 +488,7 @@ handleInt1a(void)
                                     M.x86.R_CL);
                                break;
                        case 0xb10c:
-#ifdef CONFIG_PCI_OPTION_ROM_RUN_YABEL
+#if CONFIG_PCI_OPTION_ROM_RUN_YABEL
                                        pci_write_config16(bios_device.dev, offs, M.x86.R_CX);
 #else
                                rtas_pci_config_write(bios_device.puid, 2, bus,
@@ -500,7 +500,7 @@ handleInt1a(void)
                                     M.x86.R_CX);
                                break;
                        case 0xb10d:
-#ifdef CONFIG_PCI_OPTION_ROM_RUN_YABEL
+#if CONFIG_PCI_OPTION_ROM_RUN_YABEL
                                        pci_write_config32(bios_device.dev, offs, M.x86.R_ECX);
 #else
                                rtas_pci_config_write(bios_device.puid, 4, bus,
@@ -576,8 +576,9 @@ handleInterrupt(int intNum)
                        int_handled = 1;
                        break;
                case PMM_INT_NUM:
-                       /* the selfdefined PMM INT number, this is called by the code in PMM struct, it
-                        * is handled by pmm_handleInt()
+                       /* The self-defined PMM INT number, this is called by
+                        * the code in PMM struct, and it is handled by
+                        * pmm_handleInt()
                         */
                        pmm_handleInt();
                        int_handled = 1;
index 20340470b03122f733265c9918618b533d5dd4fe..00bb1a0d2ffa2bc160fc30dfca1b8f7e162a6491 100644 (file)
 #include <x86emu/x86emu.h>
 #include "io.h"
 
-#ifdef CONFIG_PCI_OPTION_ROM_RUN_YABEL
+#if CONFIG_PCI_OPTION_ROM_RUN_YABEL
 #include <device/pci.h>
 #include <device/pci_ops.h>
 #include <device/resource.h>
 #endif
 
-#ifdef CONFIG_ARCH_X86
+#if CONFIG_ARCH_X86
 #include <arch/io.h>
 #else
 // these are not used, only needed for linking,  must be overridden using X86emu_setupPioFuncs
@@ -76,7 +76,7 @@ inl(u16 port)
 }
 #endif
 
-#if defined(CONFIG_YABEL_DIRECTHW) && (CONFIG_YABEL_DIRECTHW == 1)
+#if CONFIG_YABEL_DIRECTHW
 u8 my_inb(X86EMU_pioAddr addr)
 {
        u8 val;
@@ -455,7 +455,7 @@ pci_cfg_read(X86EMU_pioAddr addr, u8 size)
                        offs += (addr - 0xCFC); // if addr is not 0xcfc, the offset is moved accordingly
                        DEBUG_PRINTF_INTR("%s(): PCI Config Read from device: bus: %02x, devfn: %02x, offset: %02x\n",
                                __func__, bus, devfn, offs);
-#if defined(CONFIG_YABEL_PCI_ACCESS_OTHER_DEVICES) && CONFIG_YABEL_PCI_ACCESS_OTHER_DEVICES==1
+#if CONFIG_YABEL_PCI_ACCESS_OTHER_DEVICES
                        dev = dev_find_slot(bus, devfn);
                        DEBUG_PRINTF_INTR("%s(): dev_find_slot() returned: %s\n",
                                __func__, dev_path(dev));
@@ -475,7 +475,7 @@ pci_cfg_read(X86EMU_pioAddr addr, u8 size)
                                HALT_SYS();
                                return 0;
                        } else {
-#ifdef CONFIG_PCI_OPTION_ROM_RUN_YABEL
+#if CONFIG_PCI_OPTION_ROM_RUN_YABEL
                                switch (size) {
                                        case 1:
                                                rval = pci_read_config8(dev, offs);
@@ -526,7 +526,7 @@ pci_cfg_write(X86EMU_pioAddr addr, u32 val, u8 size)
                                     bus, devfn >> 3, devfn & 7, offs);
                                HALT_SYS();
                        } else {
-#ifdef CONFIG_PCI_OPTION_ROM_RUN_YABEL
+#if CONFIG_PCI_OPTION_ROM_RUN_YABEL
                                switch (size) {
                                        case 1:
                                                pci_write_config8(bios_device.dev, offs, val);
index 8ca42b0e901e069138c553751ded42503e07b22b..4b4a5528131a633be60d0ce4f92b1eb70373c3cb 100644 (file)
@@ -19,9 +19,9 @@
 #include "mem.h"
 #include "compat/time.h"
 
-#if !defined(CONFIG_YABEL_DIRECTHW) || (!CONFIG_YABEL_DIRECTHW)
+#if !CONFIG_YABEL_DIRECTHW || !CONFIG_YABEL_DIRECTHW
 
-#ifdef CONFIG_PCI_OPTION_ROM_RUN_YABEL
+#if CONFIG_PCI_OPTION_ROM_RUN_YABEL
 #include <device/resource.h>
 #endif
 
index e721eb5751c023b2749db57a99d73464ba77cedc..56712df5c5c3c1fc5697fcc55e3d97621c7995bd 100644 (file)
@@ -46,7 +46,7 @@ struct rom_header *pci_rom_probe(struct device *dev)
                rom_address = pci_read_config32(dev, PCI_ROM_ADDRESS);
 
                if (rom_address == 0x00000000 || rom_address == 0xffffffff) {
-#if defined(CONFIG_BOARD_EMULATION_QEMU_X86) && CONFIG_BOARD_EMULATION_QEMU_X86
+#if CONFIG_BOARD_EMULATION_QEMU_X86
                        if ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA)
                                rom_address = 0xc0000;
                        else
index b190285c3b4f85fc71c02d28faf3626ce895e113..5d339423ff3b81cfbcf5cf2660e8550df75b3314 100644 (file)
@@ -27,7 +27,7 @@
 static void pciexp_tune_dev(device_t dev)
 {
        unsigned int cap;
-#ifdef CONFIG_PCIE_TUNING
+#if CONFIG_PCIE_TUNING
        u32 reg32;
 #endif
 
@@ -35,7 +35,7 @@ static void pciexp_tune_dev(device_t dev)
        if (!cap)
                return;
 
-#ifdef CONFIG_PCIE_TUNING
+#if CONFIG_PCIE_TUNING
        printk(BIOS_DEBUG, "PCIe: tuning %s\n", dev_path(dev));
 
        // TODO make this depending on ASPM.
index 6ab6bec01504686803db1b0f6d5eeab2de9c7407..5f0a8f2e4a1dd5c7f550478d0ded36e9a9598fdf 100644 (file)
@@ -1,7 +1,6 @@
 #ifndef CPU_X86_MTRR_H
 #define CPU_X86_MTRR_H
 
-
 /*  These are the region types  */
 #define MTRR_TYPE_UNCACHEABLE 0
 #define MTRR_TYPE_WRCOMB     1
@@ -64,11 +63,10 @@ void x86_setup_fixed_mtrrs(void);
 # error "CONFIG_XIP_ROM_BASE is not a multiple of CONFIG_XIP_ROM_SIZE"
 #endif
 
-#if (CONFIG_RAMTOP & (CONFIG_RAMTOP -1)) != 0
+#if (CONFIG_RAMTOP & (CONFIG_RAMTOP - 1)) != 0
 # error "CONFIG_RAMTOP must be a power of 2"
 #endif
 
-
 #if !defined (__ASSEMBLER__)
 #if defined(CONFIG_XIP_ROM_SIZE)
 # if defined(CONFIG_TINY_BOOTBLOCK) && CONFIG_TINY_BOOTBLOCK
index c7a50db9e4ea015b5edd8dd07e6f523a996b3edd..1d0c4946b20c6666c4259cf11933854c1203dfbf 100644 (file)
 #include <types.h>
 #include <device/device.h>
 #include <console/console.h>
-#if defined(CONFIG_PCI_OPTION_ROM_RUN_YABEL) && CONFIG_PCI_OPTION_ROM_RUN_YABEL
+#if CONFIG_PCI_OPTION_ROM_RUN_YABEL
 #include <x86emu/x86emu.h>
 #endif
 #include <pc80/mc146818rtc.h>
 #include <arch/io.h>
 #include "chip.h"
 
-#if defined(CONFIG_PCI_OPTION_ROM_RUN_YABEL) && CONFIG_PCI_OPTION_ROM_RUN_YABEL
+#if CONFIG_PCI_OPTION_ROM_RUN_YABEL
 static int int15_handler(void)
 {
 #define BOOT_DISPLAY_DEFAULT   0
@@ -221,7 +221,7 @@ static void verb_setup(void)
 
 static void mainboard_enable(device_t dev)
 {
-#if defined(CONFIG_PCI_OPTION_ROM_RUN_YABEL) && CONFIG_PCI_OPTION_ROM_RUN_YABEL
+#if CONFIG_PCI_OPTION_ROM_RUN_YABEL
        /* Install custom int15 handler for VGA OPROM */
        int15_install();
 #endif
index 852c7646080ec500611053892b60861cd9248ee5..f7c6b5af25dfe49208ff94a9a59205d52cb86df7 100644 (file)
@@ -37,7 +37,7 @@ extern u32 mbi_len;
 /* If YABEL is enabled and it's not running at 0x00000000, we have to add some
  * offset to all our mbi object memory accesses
  */
-#if defined(CONFIG_PCI_OPTION_ROM_RUN_YABEL) && CONFIG_PCI_OPTION_ROM_RUN_YABEL && !CONFIG_YABEL_DIRECTHW
+#if CONFIG_PCI_OPTION_ROM_RUN_YABEL && !CONFIG_YABEL_DIRECTHW
 #define OBJ_OFFSET CONFIG_YABEL_VIRTMEM_LOCATION
 #else
 #define OBJ_OFFSET 0x00000
index 21c677960ec64c2ea8257324f83224b1427ec3cb..c82c484a3a5239528db53061a5483c948fb2fa0f 100644 (file)
@@ -25,7 +25,7 @@
 #include <device/pci.h>
 #include <device/pci_ids.h>
 #include <cbfs.h>
-#if defined(CONFIG_PCI_OPTION_ROM_RUN_YABEL) && CONFIG_PCI_OPTION_ROM_RUN_YABEL
+#if CONFIG_PCI_OPTION_ROM_RUN_YABEL
 #include <x86emu/x86emu.h>
 #endif
 
@@ -62,7 +62,7 @@ static void vga_init(device_t dev)
        printk(BIOS_INFO, "Graphics Initialization Complete\n");
 
        /* Enable TV-Out */
-#if defined(CONFIG_PCI_OPTION_ROM_RUN_YABEL) && CONFIG_PCI_OPTION_ROM_RUN_YABEL
+#if CONFIG_PCI_OPTION_ROM_RUN_YABEL
 #define PIPE_A_CRT     (1 << 0)
 #define PIPE_A_LFP     (1 << 1)
 #define PIPE_A_TV      (1 << 3)
index a9e4a910e2a2cd8672296566031329805a953f0b..a7fbaa44398a1645e06ec32cf8d4af1097760e49 100644 (file)
@@ -113,7 +113,7 @@ void sdram_dump_mchbar_registers(void)
 static int memclk(void)
 {
        int offset = 0;
-#if defined(CONFIG_NORTHBRIDGE_INTEL_I945GM)
+#if CONFIG_NORTHBRIDGE_INTEL_I945GM
        offset++;
 #endif
        switch (((MCHBAR32(CLKCFG) >> 4) & 7) - offset) {
@@ -125,7 +125,7 @@ static int memclk(void)
        return -1;
 }
 
-#if defined(CONFIG_NORTHBRIDGE_INTEL_I945GM)
+#if CONFIG_NORTHBRIDGE_INTEL_I945GM
 static u16 fsbclk(void)
 {
        switch (MCHBAR32(CLKCFG) & 7) {
@@ -136,7 +136,7 @@ static u16 fsbclk(void)
        }
        return 0xffff;
 }
-#elif defined(CONFIG_NORTHBRIDGE_INTEL_I945GC)
+#elif CONFIG_NORTHBRIDGE_INTEL_I945GC
 static u16 fsbclk(void)
 {
        switch (MCHBAR32(CLKCFG) & 7) {
@@ -1075,7 +1075,7 @@ static const u32 *slew_group_lookup(int dual_channel, int index)
        return nc;
 }
 
-#if defined(CONFIG_NORTHBRIDGE_INTEL_I945GM)
+#if CONFIG_NORTHBRIDGE_INTEL_I945GM
 /* Strength multiplier tables */
 static const u8 dual_channel_strength_multiplier[] = {
        0x44, 0x11, 0x11, 0x11, 0x44, 0x44, 0x44, 0x11,
@@ -1130,7 +1130,7 @@ static const u8 single_channel_strength_multiplier[] = {
        0x33, 0x00, 0x00, 0x11, 0x00, 0x44, 0x33, 0x11,
        0x33, 0x00, 0x11, 0x00, 0x44, 0x44, 0x33, 0x11
 };
-#elif defined(CONFIG_NORTHBRIDGE_INTEL_I945GC)
+#elif CONFIG_NORTHBRIDGE_INTEL_I945GC
 static const u8 dual_channel_strength_multiplier[] = {
        0x44, 0x22, 0x00, 0x00, 0x44, 0x44, 0x44, 0x22,
        0x44, 0x22, 0x00, 0x00, 0x44, 0x44, 0x44, 0x22,
@@ -2186,7 +2186,7 @@ static void sdram_program_clock_crossing(void)
        /**
         * We add the indices according to our clocks from CLKCFG.
         */
-#if defined(CONFIG_NORTHBRIDGE_INTEL_I945GM)
+#if CONFIG_NORTHBRIDGE_INTEL_I945GM
        static const u32 data_clock_crossing[] = {
                0x00100401, 0x00000000, /* DDR400 FSB400 */
                0xffffffff, 0xffffffff, /*  nonexistant  */
@@ -2231,7 +2231,7 @@ static void sdram_program_clock_crossing(void)
                0xffffffff, 0xffffffff, /*  nonexistant  */
        };
 
-#elif defined(CONFIG_NORTHBRIDGE_INTEL_I945GC)
+#elif CONFIG_NORTHBRIDGE_INTEL_I945GC
        /* i945 G/P */
        static const u32 data_clock_crossing[] = {
                0xffffffff, 0xffffffff, /*  nonexistant  */
@@ -2822,9 +2822,9 @@ static void sdram_enable_memory_clocks(struct sys_info *sysinfo)
 {
        u8 clocks[2] = { 0, 0 };
 
-#if defined(CONFIG_NORTHBRIDGE_INTEL_I945GM)
+#if CONFIG_NORTHBRIDGE_INTEL_I945GM
 #define CLOCKS_WIDTH 2
-#elif defined(CONFIG_NORTHBRIDGE_INTEL_I945GC)
+#elif CONFIG_NORTHBRIDGE_INTEL_I945GC
 #define CLOCKS_WIDTH 3
 #endif
        if (sysinfo->dimm[0] != SYSINFO_DIMM_NOT_POPULATED)
index 240e5aa75ea57c837d1738bae65a82da6b5b8e03..3fb70033dff464f3e1e43d81db9d649d92f486bf 100644 (file)
@@ -69,15 +69,15 @@ u8 k8t890_early_setup_ht(void)
                ldtnr = 2;
        }
 
-#if defined(CONFIG_SOUTHBRIDGE_VIA_K8M800)
+#if CONFIG_SOUTHBRIDGE_VIA_K8M800
        print_debug("K8M800 found at LDT ");
-#elif defined(CONFIG_SOUTHBRIDGE_VIA_K8T800)
+#elif CONFIG_SOUTHBRIDGE_VIA_K8T800
        print_debug("K8T800 found at LDT ");
-#elif defined(CONFIG_SOUTHBRIDGE_VIA_K8T800PRO)
+#elif CONFIG_SOUTHBRIDGE_VIA_K8T800PRO
        print_debug("K8T800 Pro found at LDT ");
-#elif defined(CONFIG_SOUTHBRIDGE_VIA_K8M890)
+#elif CONFIG_SOUTHBRIDGE_VIA_K8M890
        print_debug("K8M890 found at LDT ");
-#elif defined(CONFIG_SOUTHBRIDGE_VIA_K8T890)
+#elif CONFIG_SOUTHBRIDGE_VIA_K8T890
        print_debug("K8T890 found at LDT ");
 #endif
        print_debug_hex8(ldtnr);
index 7dd013ba89d9762fc02eeae0c089662624829b66..61f4989f54497c4f3f377595841208c93fb366c4 100644 (file)
@@ -300,7 +300,7 @@ static void vt8237r_init(struct device *dev)
        pci_write_config8(dev, 0x48, 0x0c);
 #else
        
-  #if defined(CONFIG_SOUTHBRIDGE_VIA_K8T800)
+  #if CONFIG_SOUTHBRIDGE_VIA_K8T800
        /* It seems that when we pair with the K8T800, we need to disable
         * the A2 mask
         */
index dde25153c7880ff2540ffecf35de4f4eb9f823a9..384494df3cf686dc646e49ef1c4468eeb1e77a7b 100644 (file)
@@ -36,7 +36,7 @@
 #define IT8716F_GAME 0x09 /* GAME port */
 #define IT8716F_IR   0x0a /* Consumer IR */
 
-#if defined(CONFIG_SUPERIO_ITE_IT8716F_OVERRIDE_FANCTL) && CONFIG_SUPERIO_ITE_IT8716F_OVERRIDE_FANCTL
+#if CONFIG_SUPERIO_ITE_IT8716F_OVERRIDE_FANCTL
 /* Provided by mainboard, called by IT8716F superio.c. */
 void init_ec(u16 base);
 #endif
index 46d5c979fd1253c88b377b848634c61eacce37cc..e04eb18fce6298fa23c07fa07fd16aa672cc26b4 100644 (file)
@@ -46,7 +46,7 @@ static void pnp_exit_ext_func_mode(device_t dev)
        pnp_write_config(dev, 0x02, 0x02);
 }
 
-#if !defined(CONFIG_SUPERIO_ITE_IT8716F_OVERRIDE_FANCTL) || !CONFIG_SUPERIO_ITE_IT8716F_OVERRIDE_FANCTL
+#if !CONFIG_SUPERIO_ITE_IT8716F_OVERRIDE_FANCTL
 static void pnp_write_index(u16 port_base, u8 reg, u8 value)
 {
        outb(reg, port_base);