diff options
author | Seung-Woo Kim <sw0312.kim@samsung.com> | 2018-06-04 16:03:05 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-06-07 20:06:29 -0400 |
commit | 5c890b1bc85af5cfb05916e360dc2919ec18ac12 (patch) | |
tree | 1cb944f7c8de9ffdf2ff63b7dfb0d48f6e833f17 /board/samsung/common/exynos5-dt.c | |
parent | e94b93d5bba5751f420b641cdbcc0cb53fea1dc1 (diff) | |
download | u-boot-5c890b1bc85af5cfb05916e360dc2919ec18ac12.tar.gz |
board: samsung: add missing line breaks for pr_err()
After the commit 9b643e312d52 ("treewide: replace with error() with
pr_err()"), there are some pr_err() with no line break. Add missing
line breaks.
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
Reviewed-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'board/samsung/common/exynos5-dt.c')
-rw-r--r-- | board/samsung/common/exynos5-dt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/samsung/common/exynos5-dt.c b/board/samsung/common/exynos5-dt.c index 9f6f654830..8c3a9ea564 100644 --- a/board/samsung/common/exynos5-dt.c +++ b/board/samsung/common/exynos5-dt.c @@ -164,7 +164,7 @@ int board_usb_init(int index, enum usb_init_type init) samsung_get_base_usb3_phy(); if (!phy) { - pr_err("usb3 phy not supported"); + pr_err("usb3 phy not supported\n"); return -ENODEV; } |