TTY: 68328serial, use ulong flags for interrupts status
authorJiri Slaby <jslaby@suse.cz>
Mon, 2 Apr 2012 11:54:38 +0000 (13:54 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 9 Apr 2012 19:02:44 +0000 (12:02 -0700)
flags passed to local_irq_save/restore should be ulong. Switch tehem
to that. Otherwise we get compilation warnings:
.../68328serial.c:248:9: warning: comparison of distinct pointer types lacks a cast [enabled by default]
.../68328serial.c:257:9: warning: comparison of distinct pointer types lacks a cast [enabled by default]

Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: linux-m68k@lists.linux-m68k.org
Acked-by: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/68328serial.c

index 81ed91ed738696a92f26c6cfb07e903e844c6adb..f0d5039a7b34c774ff534a33713231e110b7107c 100644 (file)
@@ -162,7 +162,8 @@ static void rs_stop(struct tty_struct *tty)
 
 static int rs_put_char(char ch)
 {
-        int flags, loops = 0;
+       unsigned long flags;
+       int loops = 0;
 
         local_irq_save(flags);
 
@@ -1182,7 +1183,8 @@ static const struct tty_operations rs_ops = {
 static int __init
 rs68328_init(void)
 {
-       int flags, i;
+       unsigned long flags;
+       int i;
        struct m68k_serial *info;
 
        serial_driver = alloc_tty_driver(NR_PORTS);
This page took 0.025331 seconds and 5 git commands to generate.