Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S266023AbUFIXci (ORCPT ); Wed, 9 Jun 2004 19:32:38 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S266025AbUFIXch (ORCPT ); Wed, 9 Jun 2004 19:32:37 -0400 Received: from [82.147.40.124] ([82.147.40.124]:64414 "EHLO dodge.jordet.nu") by vger.kernel.org with ESMTP id S266023AbUFIXcg (ORCPT ); Wed, 9 Jun 2004 19:32:36 -0400 Subject: Fix warning in hisax/config.c From: Stian Jordet To: linux-kernel@vger.kernel.org Cc: kkeil@suse.de Content-Type: text/plain Date: Thu, 10 Jun 2004 01:32:18 +0200 Message-Id: <1086823938.3242.5.camel@chevrolet.jordet> Mime-Version: 1.0 X-Mailer: Evolution 1.5.8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 900 Lines: 38 Hi, is this patch correct? It silences the warning, and everything seems to work fine for me. 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 +#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); - 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/