summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2015-07-06 16:47:40 -0600
committerSimon Glass <sjg@chromium.org>2015-07-21 17:39:38 -0600
commit36d7cc17bdb7678c12df52e015155ed64f4de1e7 (patch)
tree709d6f7b233e2ab596ce49f9964b4018a1656663 /drivers
parent09e7ea47e7a8c45391243a817efdfcfefd76bd68 (diff)
downloadtalos-obmc-uboot-36d7cc17bdb7678c12df52e015155ed64f4de1e7.tar.gz
talos-obmc-uboot-36d7cc17bdb7678c12df52e015155ed64f4de1e7.zip
dm: core: Add \n to two dm_warn() messages
These should finish with a newline like the others. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/core/device.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/core/device.c b/drivers/core/device.c
index 03cd964b80..51b1b44e5b 100644
--- a/drivers/core/device.c
+++ b/drivers/core/device.c
@@ -329,7 +329,7 @@ void *dev_get_platdata(struct udevice *dev)
void *dev_get_parent_platdata(struct udevice *dev)
{
if (!dev) {
- dm_warn("%s: null device", __func__);
+ dm_warn("%s: null device\n", __func__);
return NULL;
}
@@ -339,7 +339,7 @@ void *dev_get_parent_platdata(struct udevice *dev)
void *dev_get_uclass_platdata(struct udevice *dev)
{
if (!dev) {
- dm_warn("%s: null device", __func__);
+ dm_warn("%s: null device\n", __func__);
return NULL;
}
OpenPOWER on IntegriCloud