From: Simon Glass Date: Mon, 6 Jul 2015 22:47:40 +0000 (-0600) Subject: dm: core: Add \n to two dm_warn() messages X-Git-Tag: v2015.10-rc1~97 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=36d7cc17bdb7678c12df52e015155ed64f4de1e7;p=u-boot dm: core: Add \n to two dm_warn() messages These should finish with a newline like the others. Signed-off-by: Simon Glass --- 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; }