diff options
author | Paul Menzel <paulepanter@users.sourceforge.net> | 2013-03-13 13:29:44 +0100 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2013-03-13 17:39:58 +0100 |
commit | aeda4b8c0a47afc52e079faa4c0ea0ee71de9bbf (patch) | |
tree | 1127fbae0c4fdec835a7eaf7cf7015f617d909bc /src | |
parent | e112b746e0559a4a31bfe0eccbf0cabef89630c8 (diff) | |
download | coreboot-aeda4b8c0a47afc52e079faa4c0ea0ee71de9bbf.tar.xz |
src/mainboard: Drop redundant `CHIP_NAME` again for new ports
Since commit »Drop redundant CHIP_NAME in mainboard.c« (a93c3fe7) [1]
`CHIP_NAME` is unneeded for mainboards as the name is composed
automatically in `src/devices/root_device.c` from the strings in
Kconfig.
Unfortunately the ports for Google Butterfly, Link and Parrot as
as well as IEI PM-LX2-800-R10 introduced CHIP_NAME again. So drop
it again too.
[1] http://review.coreboot.org/1635
Change-Id: Ice7577a2a5c6070e196f2647c440b7a8e140e27e
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-on: http://review.coreboot.org/2708
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/google/butterfly/mainboard.c | 1 | ||||
-rw-r--r-- | src/mainboard/google/link/mainboard.c | 1 | ||||
-rw-r--r-- | src/mainboard/google/parrot/mainboard.c | 1 | ||||
-rw-r--r-- | src/mainboard/iei/pm-lx2-800-r10/mainboard.c | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/src/mainboard/google/butterfly/mainboard.c b/src/mainboard/google/butterfly/mainboard.c index 53b9631263..beda107047 100644 --- a/src/mainboard/google/butterfly/mainboard.c +++ b/src/mainboard/google/butterfly/mainboard.c @@ -502,6 +502,5 @@ static void mainboard_enable(device_t dev) } struct chip_operations mainboard_ops = { - CHIP_NAME("Google Butterfly Chromebook") .enable_dev = mainboard_enable, }; diff --git a/src/mainboard/google/link/mainboard.c b/src/mainboard/google/link/mainboard.c index a7ddb4ddfb..e40ce5250a 100644 --- a/src/mainboard/google/link/mainboard.c +++ b/src/mainboard/google/link/mainboard.c @@ -351,6 +351,5 @@ static void mainboard_enable(device_t dev) } struct chip_operations mainboard_ops = { - CHIP_NAME("Google Link Chromebook") .enable_dev = mainboard_enable, }; diff --git a/src/mainboard/google/parrot/mainboard.c b/src/mainboard/google/parrot/mainboard.c index 7f5b01ef0d..4c2618da03 100644 --- a/src/mainboard/google/parrot/mainboard.c +++ b/src/mainboard/google/parrot/mainboard.c @@ -323,6 +323,5 @@ static void mainboard_enable(device_t dev) } struct chip_operations mainboard_ops = { - CHIP_NAME("Google Parrot Chromebook") .enable_dev = mainboard_enable, }; diff --git a/src/mainboard/iei/pm-lx2-800-r10/mainboard.c b/src/mainboard/iei/pm-lx2-800-r10/mainboard.c index e7d1646ee8..f7f82c8c7a 100644 --- a/src/mainboard/iei/pm-lx2-800-r10/mainboard.c +++ b/src/mainboard/iei/pm-lx2-800-r10/mainboard.c @@ -47,6 +47,5 @@ static void mainboard_enable(struct device *dev) } struct chip_operations mainboard_ops = { - CHIP_NAME("IEI PM-LX2-800-R10 Mainboard") .enable_dev = mainboard_enable, }; |