powerpc: Make open count variables signed in hvcs/hvsi/hvc_console

Otherwise the tests for count < 0 will never be true.

Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
roel kluin
2008-12-02 11:21:43 +00:00
committed by Paul Mackerras
parent dc42149fcc
commit 3d26825ec0
3 changed files with 3 additions and 3 deletions

View File

@@ -48,7 +48,7 @@ struct hvc_struct {
spinlock_t lock;
int index;
struct tty_struct *tty;
unsigned int count;
int count;
int do_wakeup;
char *outbuf;
int outbuf_size;