remoteproc: snprintf() can return more than was printed
authorDan Carpenter <dan.carpenter@oracle.com>
Tue, 25 Sep 2012 07:02:51 +0000 (10:02 +0300)
committerOhad Ben-Cohen <ohad@wizery.com>
Sun, 30 Sep 2012 09:41:48 +0000 (11:41 +0200)
commitae768d5fac18cd4b3ff51a4860b89fabba8ccc65
treefb880925b8a1b8e2fc3a4dbf61e90281a4a36ebe
parentec4d02d9180f407c41f8310a13b34e473c671fbb
remoteproc: snprintf() can return more than was printed

snprintf() returns the number of characters which would have been
printed if there were enough space.  For example, on the first print if
we fill up the 28 character string then it would return a number more
than 30.  Use scnprintf() instead because that returns the actual number
of characters printed.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>
drivers/remoteproc/remoteproc_debugfs.c