[PATCH] fix modalias content in sysfs for macio devices
From: Olaf Hering <hidden>
Date: 2007-04-02 12:33:18
From: Olaf Hering <hidden>
Date: 2007-04-02 12:33:18
Currently the buf pointer is advanced too far during each iteration. Also terminate the string with a newline. Signed-off-by: Olaf Hering <redacted> --- drivers/macintosh/macio_sysfs.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) Index: b/drivers/macintosh/macio_sysfs.c ===================================================================
--- a/drivers/macintosh/macio_sysfs.c
+++ b/drivers/macintosh/macio_sysfs.c@@ -53,12 +53,14 @@ static ssize_t modalias_show (struct dev buf += length; while (cplen > 0) { int l; - length += sprintf (buf, "C%s", compat); - buf += length; + l = sprintf (buf, "C%s", compat); + length += l; + buf += l; l = strlen (compat) + 1; compat += l; cplen -= l; } + length += sprintf(buf, "\n"); return length; }