aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSachin Kamat <[email protected]>2014-06-03 11:56:25 +0530
committerGreg Kroah-Hartman <[email protected]>2014-06-17 17:09:36 -0700
commita859c8b2c309d91ba19d7bc273b41cb79b3ad17f (patch)
tree991f247f0e1f0352ff44abc9e166194b4b945e24
parent7171511eaec5bf23fb06078f59784a3a0626b38f (diff)
serial: samsung: Fix build error
Fixes the following build error due to a typo introduced by commit e4ac92df27 ("serial: samsung: Neaten dbg uses"): drivers/tty/serial/samsung.c:69:26: error: ‘buf’ undeclared (first use in this function) Reported-by: Arun Kumar K <[email protected]> Signed-off-by: Sachin Kamat <[email protected]> Signed-off-by: Arnd Bergmann <[email protected]> Signed-off-by: Christian Engelmayer <[email protected]> Acked-by: Joe Perches <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/tty/serial/samsung.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/samsung.c b/drivers/tty/serial/samsung.c
index 329337711bb0..c1d3ebdf3b97 100644
--- a/drivers/tty/serial/samsung.c
+++ b/drivers/tty/serial/samsung.c
@@ -66,7 +66,7 @@ static void dbg(const char *fmt, ...)
char buff[256];
va_start(va, fmt);
- vscnprintf(buff, sizeof(buf), fmt, va);
+ vscnprintf(buff, sizeof(buff), fmt, va);
va_end(va);
printascii(buff);