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/a-trend | |
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/a-trend')
-rw-r--r-- | src/mainboard/a-trend/atc-6220/chip.h | 4 | ||||
-rw-r--r-- | src/mainboard/a-trend/atc-6220/mainboard.c | 2 | ||||
-rw-r--r-- | src/mainboard/a-trend/atc-6240/chip.h | 4 | ||||
-rw-r--r-- | src/mainboard/a-trend/atc-6240/mainboard.c | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/src/mainboard/a-trend/atc-6220/chip.h b/src/mainboard/a-trend/atc-6220/chip.h index 6380ef2149..dc9bed35a5 100644 --- a/src/mainboard/a-trend/atc-6220/chip.h +++ b/src/mainboard/a-trend/atc-6220/chip.h @@ -18,5 +18,5 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -extern struct chip_operations mainboard_a_trend_atc_6220_ops; -struct mainboard_a_trend_atc_6220_config {}; +extern struct chip_operations mainboard_ops; +struct mainboard_config {}; diff --git a/src/mainboard/a-trend/atc-6220/mainboard.c b/src/mainboard/a-trend/atc-6220/mainboard.c index 56c0b39bb2..f30ebfa87d 100644 --- a/src/mainboard/a-trend/atc-6220/mainboard.c +++ b/src/mainboard/a-trend/atc-6220/mainboard.c @@ -21,6 +21,6 @@ #include <device/device.h> #include "chip.h" -struct chip_operations mainboard_a_trend_atc_6220_ops = { +struct chip_operations mainboard_ops = { CHIP_NAME("A-Trend ATC-6220 Mainboard") }; diff --git a/src/mainboard/a-trend/atc-6240/chip.h b/src/mainboard/a-trend/atc-6240/chip.h index 1e15adb6fc..56e17ca594 100644 --- a/src/mainboard/a-trend/atc-6240/chip.h +++ b/src/mainboard/a-trend/atc-6240/chip.h @@ -18,5 +18,5 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -extern struct chip_operations mainboard_a_trend_atc_6240_ops; -struct mainboard_a_trend_atc_6240_config {}; +extern struct chip_operations mainboard_ops; +struct mainboard_config {}; diff --git a/src/mainboard/a-trend/atc-6240/mainboard.c b/src/mainboard/a-trend/atc-6240/mainboard.c index 15f050a6a7..0e09ea33b2 100644 --- a/src/mainboard/a-trend/atc-6240/mainboard.c +++ b/src/mainboard/a-trend/atc-6240/mainboard.c @@ -21,6 +21,6 @@ #include <device/device.h> #include "chip.h" -struct chip_operations mainboard_a_trend_atc_6240_ops = { +struct chip_operations mainboard_ops = { CHIP_NAME("A-Trend ATC-6240 Mainboard") }; |