[PATCH] tiny ens1370.c warning fix, bk 2.5.52

carbonated beverage (ramune@net-ronin.org)
Fri, 20 Dec 2002 14:52:51 -0800


hi all,

__devinitdata is in the wrong location in ens1370.c, so it's
apparently ignored by gcc and the struct isn't freed. here's a small
patch to fix that.

-- DN
Daniel

--- ens1370.c.orig Fri Dec 20 02:03:24 2002
+++ ens1370.c Fri Dec 20 14:54:24 2002
@@ -1431,7 +1431,7 @@
unsigned short vid; /* vendor ID */
unsigned short did; /* device ID */
unsigned char rev; /* revision */
-} __devinitdata es1371_spdif_present[] = {
+} es1371_spdif_present[] __dev_initdata = {
{ .vid = PCI_VENDOR_ID_ENSONIQ, .did = PCI_DEVICE_ID_ENSONIQ_CT5880, .rev = CT5880REV_CT5880_C },
{ .vid = PCI_VENDOR_ID_ENSONIQ, .did = PCI_DEVICE_ID_ENSONIQ_CT5880, .rev = CT5880REV_CT5880_D },
{ .vid = PCI_VENDOR_ID_ENSONIQ, .did = PCI_DEVICE_ID_ENSONIQ_CT5880, .rev = CT5880REV_CT5880_E },
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/