diff options
author | Simon Glass | 2015-05-04 11:31:10 -0600 |
---|---|---|
committer | Simon Glass | 2015-05-14 18:49:35 -0600 |
commit | 832adb212e8096e9db405ed37342de8a9682deaf (patch) | |
tree | 2e4f9112c3033953e2adde8580b2d512a2faa0ad /drivers/mtd/spi | |
parent | b5279249544c6ad261991a2f4c20bb05376522d4 (diff) |
sandbox: spi: Add newline to printf() in sandbox_sf_probe
This printf() should have a newline at the end. Add it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Joe Hershberger <joe.hershberger@ni.com>
Reviewed-by: Jagan Teki <jteki@openedev.com>
Diffstat (limited to 'drivers/mtd/spi')
-rw-r--r-- | drivers/mtd/spi/sandbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/spi/sandbox.c b/drivers/mtd/spi/sandbox.c index d576d31243a..895604d7367 100644 --- a/drivers/mtd/spi/sandbox.c +++ b/drivers/mtd/spi/sandbox.c @@ -129,7 +129,7 @@ static int sandbox_sf_probe(struct udevice *dev) } } if (cs == -1) { - printf("Error: Unknown chip select for device '%s'", + printf("Error: Unknown chip select for device '%s'\n", dev->name); return -EINVAL; } |