diff options
author | Jon Dufresne <jon.dufresne@gmail.com> | 2006-12-14 14:54:00 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2006-12-14 14:54:00 +0000 |
commit | 208948787ec767dcdd2443a89f312bfba00ea2cc (patch) | |
tree | 6d7be6db2f45a665fcb661a4742c1ecac20009f6 | |
parent | af433f2197671cd02adb29305cce91c57c0438db (diff) |
In the file mainboard/intel/i82801dbm/i82801dbm.c the variable
southbridge_intel_i82801dbm_control should be named
southbridge_intel_i82801dbm_ops. Otherwise a compile error occurs if this
device is included in Config.lb of the mainboard.
Closes #62
Signed-off-by: Jon Dufresne <jon.dufresne@gmail.com>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2526 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | src/southbridge/intel/i82801dbm/i82801dbm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/intel/i82801dbm/i82801dbm.c b/src/southbridge/intel/i82801dbm/i82801dbm.c index 5b55bd92f6..160b897dc2 100644 --- a/src/southbridge/intel/i82801dbm/i82801dbm.c +++ b/src/southbridge/intel/i82801dbm/i82801dbm.c @@ -59,7 +59,7 @@ void i82801dbm_enable(device_t dev) } } -struct chip_operations southbridge_intel_i82801dbm_control = { +struct chip_operations southbridge_intel_i82801dbm_ops = { CHIP_NAME("Intel 82801DBM Southbridge") .enable_dev = i82801dbm_enable, }; |