aboutsummaryrefslogtreecommitdiff
path: root/src/arch/x86/pci_ops_conf1.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/pci_ops_conf1.c')
-rw-r--r--src/arch/x86/pci_ops_conf1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/pci_ops_conf1.c b/src/arch/x86/pci_ops_conf1.c
index 231081021b..61d1d969f7 100644
--- a/src/arch/x86/pci_ops_conf1.c
+++ b/src/arch/x86/pci_ops_conf1.c
@@ -21,10 +21,10 @@
*/
#if !CONFIG_PCI_IO_CFG_EXT
-#define CONFIG_CMD(bus,devfn, where) (0x80000000 | (bus << 16) | \
+#define CONFIG_CMD(bus, devfn, where) (0x80000000 | (bus << 16) | \
(devfn << 8) | (where & ~3))
#else
-#define CONFIG_CMD(bus,devfn, where) (0x80000000 | (bus << 16) | \
+#define CONFIG_CMD(bus, devfn, where) (0x80000000 | (bus << 16) | \
(devfn << 8) | ((where & 0xff) & ~3) |\
((where & 0xf00)<<16))
#endif