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
This commit is contained in:
Jon Dufresne 2006-12-14 14:54:00 +00:00 committed by Stefan Reinauer
parent af433f2197
commit 208948787e
1 changed files with 1 additions and 1 deletions

View File

@ -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,
};