diff options
author | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2009-02-18 20:41:57 +0000 |
---|---|---|
committer | Myles Watson <mylesgw@gmail.com> | 2009-02-18 20:41:57 +0000 |
commit | 7ad11e8d33bf0f377ea882848e7e9e6cdd0243bb (patch) | |
tree | a6c3814ddd23406c282eb7421d6777f600fd2a9e /src/mainboard/jetway | |
parent | d58671c4bfc0376e288cb0f2936bd43d8cfbb48e (diff) | |
download | coreboot-7ad11e8d33bf0f377ea882848e7e9e6cdd0243bb.tar.xz |
Carl-Daniel's part:
This patch converts mainboard_$VENDOR_$BOARD_ops to mainboard_ops and
mainboard_$VENDOR_$BOARD_config to mainboard_config.
Ron's part:
The config change that makes the naming change not break every build.
Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Signed-off-by: Ronald G. Minnich <rminnich@gmail.com>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3954 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/jetway')
-rw-r--r-- | src/mainboard/jetway/j7f24/chip.h | 4 | ||||
-rw-r--r-- | src/mainboard/jetway/j7f24/mainboard.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/mainboard/jetway/j7f24/chip.h b/src/mainboard/jetway/j7f24/chip.h index ad8c8a7886..59ab64395f 100644 --- a/src/mainboard/jetway/j7f24/chip.h +++ b/src/mainboard/jetway/j7f24/chip.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -extern struct chip_operations mainboard_jetway_j7f24_ops; +extern struct chip_operations mainboard_ops; -struct mainboard_jetway_j7f24_config { +struct mainboard_config { int nothing; }; diff --git a/src/mainboard/jetway/j7f24/mainboard.c b/src/mainboard/jetway/j7f24/mainboard.c index bb769b144f..66937479d3 100644 --- a/src/mainboard/jetway/j7f24/mainboard.c +++ b/src/mainboard/jetway/j7f24/mainboard.c @@ -22,6 +22,6 @@ #include <device/device.h> #include "chip.h" -struct chip_operations mainboard_jetway_j7f24_ops = { +struct chip_operations mainboard_ops = { CHIP_NAME("Jetway J7F[24]* Mainboard") }; |