From: Russell King <rmk@arm.linux.org.uk>
To: Fedor Karpelevitch <fedor@karpelevitch.net>,
Linus Torvalds <torvalds@osdl.org>, David Jones <davej@suse.de>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [2.6.0-test5]oops inserting PCMCIA card
Date: Tue, 9 Sep 2003 20:14:55 +0100 [thread overview]
Message-ID: <20030909201455.K4216@flint.arm.linux.org.uk> (raw)
In-Reply-To: <200309091202.03759.fedor@karpelevitch.net>; from fedor@karpelevitch.net on Tue, Sep 09, 2003 at 12:02:03PM -0700
On Tue, Sep 09, 2003 at 12:02:03PM -0700, Fedor Karpelevitch wrote:
> see attachments. I included couple other items in case they may be
> relevant.
Well, first driver I looked at - ati-agp. This should fix all the AGP
drivers.
Linus please apply. pci_device_id tables can not and must not be marked
discardable.
diff -ur orig/drivers/char/agp/ati-agp.c linux/drivers/char/agp/ati-agp.c
--- orig/drivers/char/agp/ati-agp.c Mon Sep 8 23:36:52 2003
+++ linux/drivers/char/agp/ati-agp.c Tue Sep 9 20:11:19 2003
@@ -491,7 +491,7 @@
agp_put_bridge(bridge);
}
-static struct pci_device_id agp_ati_pci_table[] __initdata = {
+static struct pci_device_id agp_ati_pci_table[] = {
{
.class = (PCI_CLASS_BRIDGE_HOST << 8),
.class_mask = ~0,
diff -ur orig/drivers/char/agp/sis-agp.c linux/drivers/char/agp/sis-agp.c
--- orig/drivers/char/agp/sis-agp.c Mon Sep 8 23:36:53 2003
+++ linux/drivers/char/agp/sis-agp.c Tue Sep 9 20:12:38 2003
@@ -215,7 +215,7 @@
agp_put_bridge(bridge);
}
-static struct pci_device_id agp_sis_pci_table[] __initdata = {
+static struct pci_device_id agp_sis_pci_table[] = {
{
.class = (PCI_CLASS_BRIDGE_HOST << 8),
.class_mask = ~0,
diff -ur orig/drivers/char/agp/uninorth-agp.c linux/drivers/char/agp/uninorth-agp.c
--- orig/drivers/char/agp/uninorth-agp.c Thu Sep 4 16:36:58 2003
+++ linux/drivers/char/agp/uninorth-agp.c Tue Sep 9 20:12:38 2003
@@ -350,7 +350,7 @@
agp_put_bridge(bridge);
}
-static struct pci_device_id agp_uninorth_pci_table[] __initdata = {
+static struct pci_device_id agp_uninorth_pci_table[] = {
{
.class = (PCI_CLASS_BRIDGE_HOST << 8),
.class_mask = ~0,
diff -ur orig/drivers/char/agp/via-agp.c linux/drivers/char/agp/via-agp.c
--- orig/drivers/char/agp/via-agp.c Mon Sep 8 23:36:53 2003
+++ linux/drivers/char/agp/via-agp.c Tue Sep 9 20:12:38 2003
@@ -432,7 +432,7 @@
agp_put_bridge(bridge);
}
-static struct pci_device_id agp_via_pci_table[] __initdata = {
+static struct pci_device_id agp_via_pci_table[] = {
{
.class = (PCI_CLASS_BRIDGE_HOST << 8),
.class_mask = ~0,
--
Russell King (rmk@arm.linux.org.uk) http://www.arm.linux.org.uk/personal/
Linux kernel maintainer of:
2.6 ARM Linux - http://www.arm.linux.org.uk/
2.6 PCMCIA - http://pcmcia.arm.linux.org.uk/
2.6 Serial core
next prev parent reply other threads:[~2003-09-09 19:15 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-09-08 23:30 [2.6.0-test5]oops inserting PCMCIA card Fedor Karpelevitch
2003-09-09 16:30 ` Russell King
[not found] ` <200309091202.03759.fedor@karpelevitch.net>
2003-09-09 19:14 ` Russell King [this message]
2003-09-10 6:01 ` Fedor Karpelevitch
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=20030909201455.K4216@flint.arm.linux.org.uk \
--to=rmk@arm.linux.org.uk \
--cc=davej@suse.de \
--cc=fedor@karpelevitch.net \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@osdl.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox