Skip to content
Snippets Groups Projects
Commit 964d153c authored by Simon Glass's avatar Simon Glass
Browse files

dm: device: Add newline to debug() messages


Some of these are missing a newline. Add it.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent ecc2ed55
No related branches found
No related tags found
No related merge requests found
......@@ -234,7 +234,7 @@ int device_probe(struct udevice *dev)
void *dev_get_platdata(struct udevice *dev)
{
if (!dev) {
dm_warn("%s: null device", __func__);
dm_warn("%s: null device\n", __func__);
return NULL;
}
......@@ -244,7 +244,7 @@ void *dev_get_platdata(struct udevice *dev)
void *dev_get_priv(struct udevice *dev)
{
if (!dev) {
dm_warn("%s: null device", __func__);
dm_warn("%s: null device\n", __func__);
return NULL;
}
......@@ -254,7 +254,7 @@ void *dev_get_priv(struct udevice *dev)
void *dev_get_parentdata(struct udevice *dev)
{
if (!dev) {
dm_warn("%s: null device", __func__);
dm_warn("%s: null device\n", __func__);
return NULL;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment