[PATCH][2.6.11] drivers/char/isicom.c gcc4 fix

From: Mikael Pettersson
Date: Tue Mar 15 2005 - 08:58:54 EST


Fix two array-of-incomplete-type errors from gcc4 in isicom.c.

/Mikael

--- linux-2.6.11/drivers/char/isicom.c.~1~ 2005-03-02 19:24:15.000000000 +0100
+++ linux-2.6.11/drivers/char/isicom.c 2005-03-15 11:37:03.000000000 +0100
@@ -151,9 +151,6 @@ MODULE_DEVICE_TABLE(pci, isicom_pci_tbl)
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
@@ -210,6 +207,9 @@ struct isi_port {
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
* the kernel lock for the card and have the card in a position that
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/