From: Henne <henne@nachtwindheim.de>
To: kernel-janitors@vger.kernel.org
Subject: [KJ] [PATCH] Marking the pci_device_id tables od the isdn-subsys as
Date: Tue, 25 Apr 2006 12:49:43 +0000 [thread overview]
Message-ID: <444E1AE7.3030403@nachtwindheim.de> (raw)
In-Reply-To: <444CEB94.4010109@nachtwindheim.de>
From: Henrik Kretzschmar <henne@nachtwindheim.de>
Marking the pci_device_id tables od the isdn-subsys as __devinitdata.
Signed-off-by: Henrik Kretzschmar <henne@nachtwindheim.de>
---
diff -urN linux-2.6.17-rc2/drivers/isdn/hardware/avm/b1pci.c linux/drivers/isdn/hardware/avm/b1pci.c
--- linux-2.6.17-rc2/drivers/isdn/hardware/avm/b1pci.c 2006-03-20 06:53:29.000000000 +0100
+++ linux/drivers/isdn/hardware/avm/b1pci.c 2006-04-25 14:36:44.000000000 +0200
@@ -32,7 +32,7 @@
/* ------------------------------------------------------------- */
-static struct pci_device_id b1pci_pci_tbl[] = {
+static struct pci_device_id b1pci_pci_tbl[] __devinitdata = {
{ PCI_VENDOR_ID_AVM, PCI_DEVICE_ID_AVM_B1, PCI_ANY_ID, PCI_ANY_ID },
{ } /* Terminating entry */
};
diff -urN linux-2.6.17-rc2/drivers/isdn/hardware/avm/c4.c linux/drivers/isdn/hardware/avm/c4.c
--- linux-2.6.17-rc2/drivers/isdn/hardware/avm/c4.c 2006-04-24 13:30:55.000000000 +0200
+++ linux/drivers/isdn/hardware/avm/c4.c 2006-04-25 14:47:24.000000000 +0200
@@ -40,7 +40,7 @@
static int suppress_pollack;
-static struct pci_device_id c4_pci_tbl[] = {
+static struct pci_device_id c4_pci_tbl[] __devinitdata = {
{ PCI_VENDOR_ID_DEC, PCI_DEVICE_ID_DEC_21285, PCI_VENDOR_ID_AVM, PCI_DEVICE_ID_AVM_C4, 0, 0, (unsigned long)4 },
{ PCI_VENDOR_ID_DEC, PCI_DEVICE_ID_DEC_21285, PCI_VENDOR_ID_AVM, PCI_DEVICE_ID_AVM_C2, 0, 0, (unsigned long)2 },
{ } /* Terminating entry */
diff -urN linux-2.6.17-rc2/drivers/isdn/hardware/avm/t1pci.c linux/drivers/isdn/hardware/avm/t1pci.c
--- linux-2.6.17-rc2/drivers/isdn/hardware/avm/t1pci.c 2006-03-20 06:53:29.000000000 +0100
+++ linux/drivers/isdn/hardware/avm/t1pci.c 2006-04-25 14:37:39.000000000 +0200
@@ -33,7 +33,7 @@
static char *revision = "$Revision: 1.1.2.2 $";
/* ------------------------------------------------------------- */
-static struct pci_device_id t1pci_pci_tbl[] = {
+static struct pci_device_id t1pci_pci_tbl[] __devinitdata = {
{ PCI_VENDOR_ID_AVM, PCI_DEVICE_ID_AVM_T1, PCI_ANY_ID, PCI_ANY_ID },
{ } /* Terminating entry */
};
diff -urN linux-2.6.17-rc2/drivers/isdn/hardware/eicon/divasmain.c linux/drivers/isdn/hardware/eicon/divasmain.c
--- linux-2.6.17-rc2/drivers/isdn/hardware/eicon/divasmain.c 2006-03-20 06:53:29.000000000 +0100
+++ linux/drivers/isdn/hardware/eicon/divasmain.c 2006-04-25 14:39:19.000000000 +0200
@@ -116,7 +116,7 @@
/*
This table should be sorted by PCI device ID
*/
-static struct pci_device_id divas_pci_tbl[] = {
+static struct pci_device_id divas_pci_tbl[] __devinitdata = {
/* Diva Server BRI-2M PCI 0xE010 */
{PCI_VENDOR_ID_EICON, PCI_DEVICE_ID_EICON_MAESTRA,
PCI_ANY_ID, PCI_ANY_ID, 0, 0, CARDTYPE_MAESTRA_PCI},
diff -urN linux-2.6.17-rc2/drivers/isdn/hisax/config.c linux/drivers/isdn/hisax/config.c
--- linux-2.6.17-rc2/drivers/isdn/hisax/config.c 2006-04-24 13:30:55.000000000 +0200
+++ linux/drivers/isdn/hisax/config.c 2006-04-25 14:40:11.000000000 +0200
@@ -1876,7 +1876,7 @@
#ifdef CONFIG_PCI
#include <linux/pci.h>
-static struct pci_device_id hisax_pci_tbl[] __initdata = {
+static struct pci_device_id hisax_pci_tbl[] __devinitdata = {
#ifdef CONFIG_HISAX_FRITZPCI
{PCI_VENDOR_ID_AVM, PCI_DEVICE_ID_AVM_A1, PCI_ANY_ID, PCI_ANY_ID},
#endif
diff -urN linux-2.6.17-rc2/drivers/isdn/hisax/hfc4s8s_l1.c linux/drivers/isdn/hisax/hfc4s8s_l1.c
--- linux-2.6.17-rc2/drivers/isdn/hisax/hfc4s8s_l1.c 2006-03-20 06:53:29.000000000 +0100
+++ linux/drivers/isdn/hisax/hfc4s8s_l1.c 2006-04-25 14:40:45.000000000 +0200
@@ -86,7 +86,7 @@
char *device_name;
} hfc4s8s_param;
-static struct pci_device_id hfc4s8s_ids[] = {
+static struct pci_device_id hfc4s8s_ids[] __devinitdata = {
{.vendor = PCI_VENDOR_ID_CCD,
.device = PCI_DEVICE_ID_4S,
.subvendor = 0x1397,
diff -urN linux-2.6.17-rc2/drivers/isdn/hisax/hisax_fcpcipnp.c linux/drivers/isdn/hisax/hisax_fcpcipnp.c
--- linux-2.6.17-rc2/drivers/isdn/hisax/hisax_fcpcipnp.c 2006-04-24 13:30:55.000000000 +0200
+++ linux/drivers/isdn/hisax/hisax_fcpcipnp.c 2006-04-25 14:42:01.000000000 +0200
@@ -51,7 +51,7 @@
MODULE_AUTHOR("Kai Germaschewski <kai.germaschewski@gmx.de>/Karsten Keil <kkeil@suse.de>");
MODULE_DESCRIPTION("AVM Fritz!PCI/PnP ISDN driver");
-static struct pci_device_id fcpci_ids[] = {
+static struct pci_device_id fcpci_ids[] __devinitdata = {
{ .vendor = PCI_VENDOR_ID_AVM,
.device = PCI_DEVICE_ID_AVM_A1,
.subvendor = PCI_ANY_ID,
diff -urN linux-2.6.17-rc2/drivers/isdn/hysdn/hysdn_init.c linux/drivers/isdn/hysdn/hysdn_init.c
--- linux-2.6.17-rc2/drivers/isdn/hysdn/hysdn_init.c 2006-04-24 13:30:55.000000000 +0200
+++ linux/drivers/isdn/hysdn/hysdn_init.c 2006-04-25 14:42:48.000000000 +0200
@@ -20,7 +20,7 @@
#include "hysdn_defs.h"
-static struct pci_device_id hysdn_pci_tbl[] = {
+static struct pci_device_id hysdn_pci_tbl[] __devinitdata = {
{PCI_VENDOR_ID_HYPERCOPE, PCI_DEVICE_ID_HYPERCOPE_PLX, PCI_ANY_ID, PCI_SUBDEVICE_ID_HYPERCOPE_METRO},
{PCI_VENDOR_ID_HYPERCOPE, PCI_DEVICE_ID_HYPERCOPE_PLX, PCI_ANY_ID, PCI_SUBDEVICE_ID_HYPERCOPE_CHAMP2},
{PCI_VENDOR_ID_HYPERCOPE, PCI_DEVICE_ID_HYPERCOPE_PLX, PCI_ANY_ID, PCI_SUBDEVICE_ID_HYPERCOPE_ERGO},
_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.osdl.org
https://lists.osdl.org/mailman/listinfo/kernel-janitors
next prev parent reply other threads:[~2006-04-25 12:49 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-04-24 15:15 [KJ] [PATCH] Marking the pci_device_id tables of the serial-subsys Henne
2006-04-24 15:24 ` [KJ] [PATCH] Marking the pci_device_id tables of the pcmcia-subsys Henne
2006-04-24 15:36 ` [KJ] [PATCH] Marking the pci_device_id tables of the pci-subsystem Henne
2006-04-24 15:57 ` [KJ] [PATCH] Marking the pci_device_id tables of the Greg KH
2006-04-25 11:53 ` [KJ] [PATCH] Marking the pci_device_id tables of the video-subsys Henne
2006-04-25 12:01 ` [KJ] [PATCH] Marking the pci_device_id tables of the parport-subsys Henne
2006-04-25 12:07 ` [KJ] [PATCH] Marking the pci_device_id tables of the parisc-subsys Henne
2006-04-25 12:17 ` [KJ] [PATCH] Marking the pci_device_id tables of the mtd-subsys as Henne
2006-04-25 12:31 ` [KJ] [PATCH] Marking the pci_device_id tables of the message-subsys Henne
2006-04-25 12:49 ` Henne [this message]
2006-04-25 13:03 ` [KJ] [PATCH] Marking the pci_device_id tables of the input-subsys Henne
2006-04-25 13:11 ` [KJ] [PATCH] Marking the pci_device_id tables of the Henne
2006-04-25 13:41 ` Henne
2006-04-25 14:36 ` [KJ] [PATCH] Marking the pci_device_id tables of the char-subsys as Henne
2006-04-25 16:31 ` [KJ] [PATCH] Marking the pci_device_id tables of the scsi-subsys as Henne
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=444E1AE7.3030403@nachtwindheim.de \
--to=henne@nachtwindheim.de \
--cc=kernel-janitors@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.