If the prom functions don't print the entire length of the buffer we provide them, we should start over from where they finished, rather than marking the entirety of the buffer as written. Signed-off-by: Julian Calaby <julian.calaby@xxxxxxxxx> --- arch/sparc/prom/console_64.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/sparc/prom/console_64.c b/arch/sparc/prom/console_64.c index ed39e75..d4eb8ae 100644 --- a/arch/sparc/prom/console_64.c +++ b/arch/sparc/prom/console_64.c @@ -43,6 +43,6 @@ void prom_console_write_buf(const char *buf, int len) if (n < 0) continue; len -= n; - buf += len; + buf += n; } } -- To unsubscribe from this list: send the line "unsubscribe sparclinux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html