diff options
author | Roel Kluin <12o3l@tiscali.nl> | 2008-04-28 05:11:50 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 11:58:16 -0400 |
commit | 1ecf0d0cd28a4bfed3009f752061998e52d14db2 (patch) | |
tree | dc72f443149f69eb5edbed69774248fbfc32636f /drivers/serial/dz.c | |
parent | 556637cdabcd5918c7d4a1a2679b8f86fc81e891 (diff) |
dz: test after postfix decrement fails in dz_console_putchar()
When loops reaches 0 the postfix decrement still subtracts, so the subsequent
test fails.
Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
Acked-by: Maciej W. Rozycki <macro@linux-mips.org>
Cc: Johannes Weiner <hannes@saeurebad.de>
Cc: <stable@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/serial/dz.c')
-rw-r--r-- | drivers/serial/dz.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/dz.c b/drivers/serial/dz.c index 116211fcd36f..0dddd68b20d2 100644 --- a/drivers/serial/dz.c +++ b/drivers/serial/dz.c | |||
@@ -819,7 +819,7 @@ static void dz_console_putchar(struct uart_port *uport, int ch) | |||
819 | dz_out(dport, DZ_TCR, mask); | 819 | dz_out(dport, DZ_TCR, mask); |
820 | iob(); | 820 | iob(); |
821 | udelay(2); | 821 | udelay(2); |
822 | } while (loops--); | 822 | } while (--loops); |
823 | 823 | ||
824 | if (loops) /* Cannot send otherwise. */ | 824 | if (loops) /* Cannot send otherwise. */ |
825 | dz_out(dport, DZ_TDR, ch); | 825 | dz_out(dport, DZ_TDR, ch); |