mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
dm: device: Add newline to debug() messages
Some of these are missing a newline. Add it. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
ecc2ed55ee
commit
964d153c0e
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue