UPSTREAM: soc: Remove newline from CHIP_NAME

The name must not terminated with a newline character `n` as it would
make it hard to use it strings. So, remove the newline from the two SoCs
with it.

BUG=None
BRANCH=None
TEST=None

Change-Id: I7570442b38a455e7c497d7f461c208fb0a88296d
Original-Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Original-Reviewed-on: https://review.coreboot.org/15540
Original-Tested-by: build bot (Jenkins)
Original-Reviewed-by: Kysti Mlkki <kyosti.malkki@gmail.com>
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/358890
Reviewed-by: Furquan Shaikh <furquan@chromium.org>
This commit is contained in:
Paul Menzel 2016-07-03 09:45:26 +02:00 committed by chrome-bot
commit 3080856843
2 changed files with 2 additions and 2 deletions

View file

@ -39,6 +39,6 @@ static void enable_soc_dev(device_t dev)
}
struct chip_operations soc_mediatek_mt8173_ops = {
CHIP_NAME("SOC Mediatek MT8173\n")
CHIP_NAME("SOC Mediatek MT8173")
.enable_dev = enable_soc_dev,
};

View file

@ -55,6 +55,6 @@ static void enable_soc_dev(device_t dev)
}
struct chip_operations soc_rockchip_rk3399_ops = {
CHIP_NAME("SOC Rockchip RK3399\n")
CHIP_NAME("SOC Rockchip RK3399")
.enable_dev = enable_soc_dev,
};