mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2025-12-10 07:44:53 +01: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