Self-acking fix of a stupid typo.

Signed-off-by: Ronald G. Minnich <rminnich@gmail.com>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>



git-svn-id: svn://coreboot.org/repository/coreboot-v3@721 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
Ronald G. Minnich 2008-08-05 01:24:38 +00:00
commit 8ad705f72c

View file

@ -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)