Commit a04e856a authored by Armin Schindler's avatar Armin Schindler Committed by Linus Torvalds

[PATCH] Eicon ISDN driver: removed __devinitdata from pci_device_id.

pci_device_id can not be marked __devinitdata,
was re-added with last update by accident.
parent dbef13b8
/* $Id: divasmain.c,v 1.39 2003/09/09 07:42:05 schindler Exp $ /* $Id: divasmain.c,v 1.40 2003/09/10 08:02:33 schindler Exp $
* *
* Low level driver for Eicon DIVA Server ISDN cards. * Low level driver for Eicon DIVA Server ISDN cards.
* *
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
#include "diva_dma.h" #include "diva_dma.h"
#include "diva_pci.h" #include "diva_pci.h"
static char *main_revision = "$Revision: 1.39 $"; static char *main_revision = "$Revision: 1.40 $";
int errno = 0; int errno = 0;
static int major; static int major;
...@@ -123,7 +123,7 @@ typedef struct _diva_os_thread_dpc { ...@@ -123,7 +123,7 @@ typedef struct _diva_os_thread_dpc {
/* /*
This table should be sorted by PCI device ID This table should be sorted by PCI device ID
*/ */
static struct pci_device_id divas_pci_tbl[] __devinitdata = { static struct pci_device_id divas_pci_tbl[] = {
/* Diva Server BRI-2M PCI 0xE010 */ /* Diva Server BRI-2M PCI 0xE010 */
{PCI_VENDOR_ID_EICON, PCI_DEVICE_ID_EICON_MAESTRA, {PCI_VENDOR_ID_EICON, PCI_DEVICE_ID_EICON_MAESTRA,
PCI_ANY_ID, PCI_ANY_ID, 0, 0, CARDTYPE_MAESTRA_PCI}, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CARDTYPE_MAESTRA_PCI},
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment