Re: Fix warning in hisax/config.c

From: Stian Jordet
Date: Wed Jun 09 2004 - 18:38:28 EST


tor, 10.06.2004 kl. 01.32 +0200, skrev Stian Jordet:
> Hi,
>
> is this patch correct? It silences the warning, and everything seems to
> work fine for me.

Uhh, more like this. Sorry.

Best regards,
Stian
--- linux-2.6.6/drivers/isdn/hisax/config.c.old 2004-06-06 01:43:01.000000000 +0200
+++ linux-2.6.6/drivers/isdn/hisax/config.c 2004-06-06 01:43:24.000000000 +0200
@@ -1886,6 +1886,8 @@

#include <linux/pci.h>

+#ifdef MODULE
+
static struct pci_device_id hisax_pci_tbl[] __initdata = {
#ifdef CONFIG_HISAX_FRITZPCI
{PCI_VENDOR_ID_AVM, PCI_DEVICE_ID_AVM_A1, PCI_ANY_ID, PCI_ANY_ID},
@@ -1953,6 +1955,8 @@

MODULE_DEVICE_TABLE(pci, hisax_pci_tbl);

+#endif
+
module_init(HiSax_init);
module_exit(HiSax_exit);