mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-01 17:36:03 +01:00
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>
This commit is contained in:
parent
09e7ea47e7
commit
36d7cc17bd
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue