diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2011-04-21 20:24:43 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2011-04-21 20:24:43 +0000 |
commit | 1d888a97849d68a7136da558c3697c7f2a8d898a (patch) | |
tree | 56044eeb39625a7fc3d040d9e496eda7f82f8c51 /src/devices/pciexp_device.c | |
parent | 305f2f50abe0360b10f2fef3d65a102912dade40 (diff) | |
download | coreboot-1d888a97849d68a7136da558c3697c7f2a8d898a.tar.xz |
some ifdef --> if fixes
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
Diffstat (limited to 'src/devices/pciexp_device.c')
-rw-r--r-- | src/devices/pciexp_device.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/pciexp_device.c b/src/devices/pciexp_device.c index b190285c3b..5d339423ff 100644 --- a/src/devices/pciexp_device.c +++ b/src/devices/pciexp_device.c @@ -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. |