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

sandbox: spi: Add newline to printf() in sandbox_sf_probe


This printf() should have a newline at the end. Add it.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
Reviewed-by: default avatarJoe Hershberger <joe.hershberger@ni.com>
Reviewed-by: default avatarJagan Teki <jteki@openedev.com>
parent b5279249
No related branches found
No related tags found
No related merge requests found
...@@ -129,7 +129,7 @@ static int sandbox_sf_probe(struct udevice *dev) ...@@ -129,7 +129,7 @@ static int sandbox_sf_probe(struct udevice *dev)
} }
} }
if (cs == -1) { if (cs == -1) {
printf("Error: Unknown chip select for device '%s'", printf("Error: Unknown chip select for device '%s'\n",
dev->name); dev->name);
return -EINVAL; return -EINVAL;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment