Skip to content

Commit

Permalink
sandbox: spi: Add newline to printf() in sandbox_sf_probe
Browse files Browse the repository at this point in the history
This printf() should have a newline at the end. Add it.

Signed-off-by: Simon Glass <[email protected]>
Reviewed-by: Joe Hershberger <[email protected]>
Reviewed-by: Jagan Teki <[email protected]>
  • Loading branch information
sjg20 committed May 15, 2015
1 parent b527924 commit 832adb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/mtd/spi/sandbox.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 832adb2

Please sign in to comment.