From 8ad705f72cc2818733748a8648cf84a99d03d99e Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 5 Aug 2008 01:24:38 +0000 Subject: [PATCH] Self-acking fix of a stupid typo. Signed-off-by: Ronald G. Minnich Acked-by: Ronald G. Minnich git-svn-id: svn://coreboot.org/repository/coreboot-v3@721 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- northbridge/amd/k8/raminit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/northbridge/amd/k8/raminit.c b/northbridge/amd/k8/raminit.c index a28a0aaa4c..c082f8f893 100644 --- a/northbridge/amd/k8/raminit.c +++ b/northbridge/amd/k8/raminit.c @@ -56,8 +56,8 @@ extern const struct pci_bus_operations pci_cf8_conf1; static void hard_reset(void); -#define pci_config_read32(bus, dev, where) pci_cf8_conf1.read32(NULL, r->pcm.bus, dev, where) -#define pci_config_write32(bus, dev, where, what) pci_cf8_conf1.write32(NULL, r->pcm.bus, dev, where, what) +#define pci_config_read32(bus, dev, where) pci_cf8_conf1.read32(NULL, bus, dev, where) +#define pci_config_write32(bus, dev, where, what) pci_cf8_conf1.write32(NULL, bus, dev, where, what) static int controller_present(const struct mem_controller *ctrl)