summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>2009-02-13 11:00:21 +0000
committerCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>2009-02-13 11:00:21 +0000
commit54d59cf82cca410a746f738062dff6119c592b0c (patch)
tree80197fe99d4378af83ce1d2fd86e29400a480efd
parent9d6d811dd1f98495d96920baec466b4ad58b529a (diff)
downloadcoreboot-54d59cf82cca410a746f738062dff6119c592b0c.tar.gz
coreboot-54d59cf82cca410a746f738062dff6119c592b0c.tar.bz2
coreboot-54d59cf82cca410a746f738062dff6119c592b0c.zip
Fix missing indirection for CONFIG_PCI_64BIT_PREF_MEM. That config still
does not compile, but this needed fixing anyway. Signed-off-by: Ronald Hoogenboom <hoogenboom30@zonnet.nl> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> git-svn-id: svn://coreboot.org/repository/coreboot-v3@1132 f3766cd6-281f-0410-b1cd-43a5c92072e9
-rw-r--r--southbridge/nvidia/mcp55/pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/southbridge/nvidia/mcp55/pci.c b/southbridge/nvidia/mcp55/pci.c
index 0a868240be97..66f23f94cfd0 100644
--- a/southbridge/nvidia/mcp55/pci.c
+++ b/southbridge/nvidia/mcp55/pci.c
@@ -38,7 +38,7 @@ static void pci_init(struct device *dev)
u32 dword;
u16 word;
#ifdef CONFIG_PCI_64BIT_PREF_MEM
- struct device pci_domain_dev;
+ struct device *pci_domain_dev;
struct resource *mem1, *mem2;
#endif