ChangeSet 1.2231.1.146, 2005/03/28 19:57:05-08:00, [EMAIL PROTECTED]

        [PATCH] drivers/char/isicom.c gcc4 fix
        
        Fix two array-of-incomplete-type errors from gcc4 in isicom.c.
        
        Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
        Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>



 isicom.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


diff -Nru a/drivers/char/isicom.c b/drivers/char/isicom.c
--- a/drivers/char/isicom.c     2005-03-28 21:38:37 -08:00
+++ b/drivers/char/isicom.c     2005-03-28 21:38:37 -08:00
@@ -151,9 +151,6 @@
 static int prev_card = 3;      /*      start servicing isi_card[0]     */
 static struct tty_driver *isicom_normal;
 
-static struct isi_board isi_card[BOARD_COUNT];
-static struct isi_port  isi_ports[PORT_COUNT];
-
 static struct timer_list tx;
 static char re_schedule = 1;
 #ifdef ISICOM_DEBUG
@@ -209,6 +206,9 @@
        int                     xmit_tail;
        int                     xmit_cnt;
 };
+
+static struct isi_board isi_card[BOARD_COUNT];
+static struct isi_port  isi_ports[PORT_COUNT];
 
 /*
  *     Locking functions for card level locking. We need to own both
-
To unsubscribe from this list: send the line "unsubscribe bk-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to