From a93c3fe7f05f5ab440f377360e5149f7234abb73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ky=C3=B6sti=20M=C3=A4lkki?= Date: Tue, 9 Oct 2012 22:28:56 +0300 Subject: Drop redundant CHIP_NAME in mainboard.c MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Compose the name from Kconfig strings instead. As the field is for debug print use only, a minor change in the output should do no harm. The strings no longer include word "Mainboard". Change-Id: Ifd24f408271eb5a5d1a08a317512ef00cb537ee2 Signed-off-by: Kyösti Mälkki Reviewed-on: http://review.coreboot.org/1635 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi Reviewed-by: Stefan Reinauer --- src/mainboard/lippert/frontrunner/mainboard.c | 1 - src/mainboard/lippert/hurricane-lx/mainboard.c | 1 - src/mainboard/lippert/literunner-lx/mainboard.c | 1 - src/mainboard/lippert/roadrunner-lx/mainboard.c | 1 - src/mainboard/lippert/spacerunner-lx/mainboard.c | 1 - 5 files changed, 5 deletions(-) (limited to 'src/mainboard/lippert') diff --git a/src/mainboard/lippert/frontrunner/mainboard.c b/src/mainboard/lippert/frontrunner/mainboard.c index ec1503e469..0c310fb4fd 100644 --- a/src/mainboard/lippert/frontrunner/mainboard.c +++ b/src/mainboard/lippert/frontrunner/mainboard.c @@ -1,6 +1,5 @@ #include struct chip_operations mainboard_ops = { - CHIP_NAME("Lippert Cool Frontrunner Mainboard") }; diff --git a/src/mainboard/lippert/hurricane-lx/mainboard.c b/src/mainboard/lippert/hurricane-lx/mainboard.c index 9b7ad986ce..f13e48bde3 100644 --- a/src/mainboard/lippert/hurricane-lx/mainboard.c +++ b/src/mainboard/lippert/hurricane-lx/mainboard.c @@ -83,6 +83,5 @@ static void enable_dev(struct device *dev) } struct chip_operations mainboard_ops = { - CHIP_NAME("LiPPERT Hurricane-LX Mainboard") .enable_dev = enable_dev, }; diff --git a/src/mainboard/lippert/literunner-lx/mainboard.c b/src/mainboard/lippert/literunner-lx/mainboard.c index cfec2a83a2..c1b8fc2735 100644 --- a/src/mainboard/lippert/literunner-lx/mainboard.c +++ b/src/mainboard/lippert/literunner-lx/mainboard.c @@ -87,6 +87,5 @@ static void enable_dev(struct device *dev) } struct chip_operations mainboard_ops = { - CHIP_NAME("LiPPERT LiteRunner-LX Mainboard") .enable_dev = enable_dev, }; diff --git a/src/mainboard/lippert/roadrunner-lx/mainboard.c b/src/mainboard/lippert/roadrunner-lx/mainboard.c index 26adb2ff75..22bcf43fdd 100644 --- a/src/mainboard/lippert/roadrunner-lx/mainboard.c +++ b/src/mainboard/lippert/roadrunner-lx/mainboard.c @@ -77,6 +77,5 @@ static void enable_dev(struct device *dev) } struct chip_operations mainboard_ops = { - CHIP_NAME("LiPPERT RoadRunner-LX Mainboard") .enable_dev = enable_dev, }; diff --git a/src/mainboard/lippert/spacerunner-lx/mainboard.c b/src/mainboard/lippert/spacerunner-lx/mainboard.c index f2aeb106ad..e2e6093099 100644 --- a/src/mainboard/lippert/spacerunner-lx/mainboard.c +++ b/src/mainboard/lippert/spacerunner-lx/mainboard.c @@ -82,6 +82,5 @@ static void enable_dev(struct device *dev) } struct chip_operations mainboard_ops = { - CHIP_NAME("LiPPERT SpaceRunner-LX Mainboard") .enable_dev = enable_dev, }; -- cgit v1.2.3