* [PATCH 02/34] move atp870u_remove to .devexit.text
[not found] <20091001082607.GA2181@pengutronix.de>
@ 2009-10-01 8:28 ` Uwe Kleine-König
2009-10-01 14:20 ` James Bottomley
2009-10-01 8:28 ` [PATCH 08/34] move initio_remove_one " Uwe Kleine-König
` (7 subsequent siblings)
8 siblings, 1 reply; 11+ messages in thread
From: Uwe Kleine-König @ 2009-10-01 8:28 UTC (permalink / raw)
To: linux-kernel
Cc: Sam Ravnborg, Andrew Morton, James E.J. Bottomley, Yang Hongyang,
James Bottomley, Alan Cox, linux-scsi
The function atp870u_remove is used only wrapped by __devexit_p so define
it using __devexit.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Cc: James E.J. Bottomley <James.Bottomley@suse.de>
Cc: Yang Hongyang <yanghy@cn.fujitsu.com>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Alan Cox <alan@redhat.com>
Cc: linux-scsi@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
---
drivers/scsi/atp870u.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/scsi/atp870u.c b/drivers/scsi/atp870u.c
index b137e56..1059167 100644
--- a/drivers/scsi/atp870u.c
+++ b/drivers/scsi/atp870u.c
@@ -3143,7 +3143,7 @@ static int atp870u_biosparam(struct scsi_device *disk, struct block_device *dev,
return 0;
}
-static void atp870u_remove (struct pci_dev *pdev)
+static void __devexit atp870u_remove (struct pci_dev *pdev)
{
struct atp_unit *devext = pci_get_drvdata(pdev);
struct Scsi_Host *pshost = devext->host;
--
1.6.4.3
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 08/34] move initio_remove_one to .devexit.text
[not found] <20091001082607.GA2181@pengutronix.de>
2009-10-01 8:28 ` [PATCH 02/34] move atp870u_remove to .devexit.text Uwe Kleine-König
@ 2009-10-01 8:28 ` Uwe Kleine-König
2009-10-01 8:28 ` [PATCH 10/34] don't use __devexit_p to wrap lasi700_driver_remove Uwe Kleine-König
` (6 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Uwe Kleine-König @ 2009-10-01 8:28 UTC (permalink / raw)
To: linux-kernel
Cc: Sam Ravnborg, Andrew Morton, James E.J. Bottomley, Yang Hongyang,
James Bottomley, Alan Cox, linux-scsi
The function initio_remove_one is used only wrapped by __devexit_p so
define it using __devexit.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: James E.J. Bottomley <James.Bottomley@suse.de>
Cc: Yang Hongyang <yanghy@cn.fujitsu.com>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Alan Cox <alan@redhat.com>
Cc: linux-scsi@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
---
drivers/scsi/initio.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/scsi/initio.c b/drivers/scsi/initio.c
index 89a5948..8bbfd99 100644
--- a/drivers/scsi/initio.c
+++ b/drivers/scsi/initio.c
@@ -2964,7 +2964,7 @@ out_disable_device:
* finished being used.
*/
-static void initio_remove_one(struct pci_dev *pdev)
+static void __devexit initio_remove_one(struct pci_dev *pdev)
{
struct Scsi_Host *host = pci_get_drvdata(pdev);
struct initio_host *s = (struct initio_host *)host->hostdata;
--
1.6.4.3
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 10/34] don't use __devexit_p to wrap lasi700_driver_remove
[not found] <20091001082607.GA2181@pengutronix.de>
2009-10-01 8:28 ` [PATCH 02/34] move atp870u_remove to .devexit.text Uwe Kleine-König
2009-10-01 8:28 ` [PATCH 08/34] move initio_remove_one " Uwe Kleine-König
@ 2009-10-01 8:28 ` Uwe Kleine-König
2009-10-01 8:28 ` [PATCH 12/34] move megaraid_detach_one to .devexit.text Uwe Kleine-König
` (5 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Uwe Kleine-König @ 2009-10-01 8:28 UTC (permalink / raw)
To: linux-kernel
Cc: Sam Ravnborg, Andrew Morton, James E.J. Bottomley, Yang Hongyang,
Kyle McMartin, Kay Sievers, James Bottomley, linux-scsi
The function lasi700_driver_remove is defined using __exit, so don't use
__devexit_p but __exit_p to wrap it.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: James E.J. Bottomley <James.Bottomley@suse.de>
Cc: Yang Hongyang <yanghy@cn.fujitsu.com>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Cc: Kay Sievers <kay.sievers@vrfy.org>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Cc: linux-scsi@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
---
drivers/scsi/lasi700.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/scsi/lasi700.c b/drivers/scsi/lasi700.c
index b3d3131..2991c81 100644
--- a/drivers/scsi/lasi700.c
+++ b/drivers/scsi/lasi700.c
@@ -167,7 +167,7 @@ static struct parisc_driver lasi700_driver = {
.name = "lasi_scsi",
.id_table = lasi700_ids,
.probe = lasi700_probe,
- .remove = __devexit_p(lasi700_driver_remove),
+ .remove = __exit_p(lasi700_driver_remove),
};
static int __init
--
1.6.4.3
--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 12/34] move megaraid_detach_one to .devexit.text
[not found] <20091001082607.GA2181@pengutronix.de>
` (2 preceding siblings ...)
2009-10-01 8:28 ` [PATCH 10/34] don't use __devexit_p to wrap lasi700_driver_remove Uwe Kleine-König
@ 2009-10-01 8:28 ` Uwe Kleine-König
2009-10-01 8:28 ` [PATCH 18/34] don't use __devexit_p to wrap NCR_Q720_remove Uwe Kleine-König
` (4 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Uwe Kleine-König @ 2009-10-01 8:28 UTC (permalink / raw)
To: linux-kernel
Cc: Sam Ravnborg, Andrew Morton, Neela Syam Kolli,
James E.J. Bottomley, Yang Hongyang, linux-scsi
The function megaraid_detach_one is used only wrapped by __devexit_p so
define it using __devexit.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Cc: Neela Syam Kolli <megaraidlinux@lsi.com>
Cc: James E.J. Bottomley <James.Bottomley@suse.de>
Cc: Yang Hongyang <yanghy@cn.fujitsu.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: linux-scsi@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
---
drivers/scsi/megaraid/megaraid_mbox.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/scsi/megaraid/megaraid_mbox.c b/drivers/scsi/megaraid/megaraid_mbox.c
index 234f0b7..9fc9cf7 100644
--- a/drivers/scsi/megaraid/megaraid_mbox.c
+++ b/drivers/scsi/megaraid/megaraid_mbox.c
@@ -76,7 +76,7 @@ static int megaraid_init(void);
static void megaraid_exit(void);
static int megaraid_probe_one(struct pci_dev*, const struct pci_device_id *);
-static void megaraid_detach_one(struct pci_dev *);
+static void __devexit megaraid_detach_one(struct pci_dev *);
static void megaraid_mbox_shutdown(struct pci_dev *);
static int megaraid_io_attach(adapter_t *);
@@ -551,7 +551,7 @@ out_probe_one:
*
* This routine is also called from the PCI hotplug system.
*/
-static void
+static void __devexit
megaraid_detach_one(struct pci_dev *pdev)
{
adapter_t *adapter;
--
1.6.4.3
--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 18/34] don't use __devexit_p to wrap NCR_Q720_remove
[not found] <20091001082607.GA2181@pengutronix.de>
` (3 preceding siblings ...)
2009-10-01 8:28 ` [PATCH 12/34] move megaraid_detach_one to .devexit.text Uwe Kleine-König
@ 2009-10-01 8:28 ` Uwe Kleine-König
2009-10-01 8:28 ` [PATCH 23/34] don't use __devexit_p to wrap sgiwd93_remove Uwe Kleine-König
` (3 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Uwe Kleine-König @ 2009-10-01 8:28 UTC (permalink / raw)
To: linux-kernel
Cc: Sam Ravnborg, Andrew Morton, James E.J. Bottomley, linux-scsi
The function NCR_Q720_remove is defined using __exit, so don't use
__devexit_p but __exit_p to wrap it.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: James E.J. Bottomley <James.Bottomley@suse.de>
Cc: linux-scsi@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
---
drivers/scsi/NCR_Q720.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/scsi/NCR_Q720.c b/drivers/scsi/NCR_Q720.c
index a8bbdc2..572042f 100644
--- a/drivers/scsi/NCR_Q720.c
+++ b/drivers/scsi/NCR_Q720.c
@@ -350,7 +350,7 @@ static struct mca_driver NCR_Q720_driver = {
.name = "NCR_Q720",
.bus = &mca_bus_type,
.probe = NCR_Q720_probe,
- .remove = __devexit_p(NCR_Q720_remove),
+ .remove = __exit_p(NCR_Q720_remove),
},
};
--
1.6.4.3
--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 23/34] don't use __devexit_p to wrap sgiwd93_remove
[not found] <20091001082607.GA2181@pengutronix.de>
` (4 preceding siblings ...)
2009-10-01 8:28 ` [PATCH 18/34] don't use __devexit_p to wrap NCR_Q720_remove Uwe Kleine-König
@ 2009-10-01 8:28 ` Uwe Kleine-König
2009-10-01 8:28 ` [PATCH 25/34] don't use __devexit_p to wrap snirm710_driver_remove Uwe Kleine-König
` (2 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Uwe Kleine-König @ 2009-10-01 8:28 UTC (permalink / raw)
To: linux-kernel
Cc: Sam Ravnborg, Andrew Morton, James E.J. Bottomley,
James Bottomley, Dmitri Vorobiev, linux-scsi
The function sgiwd93_remove is defined using __exit, so don't use
__devexit_p but __exit_p to wrap it.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: James E.J. Bottomley <James.Bottomley@suse.de>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Cc: Dmitri Vorobiev <dmitri.vorobiev@movial.fi>
Cc: linux-scsi@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
---
drivers/scsi/sgiwd93.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/scsi/sgiwd93.c b/drivers/scsi/sgiwd93.c
index 0807b26..2f28ec4 100644
--- a/drivers/scsi/sgiwd93.c
+++ b/drivers/scsi/sgiwd93.c
@@ -312,7 +312,7 @@ static int __exit sgiwd93_remove(struct platform_device *pdev)
static struct platform_driver sgiwd93_driver = {
.probe = sgiwd93_probe,
- .remove = __devexit_p(sgiwd93_remove),
+ .remove = __exit_p(sgiwd93_remove),
.driver = {
.name = "sgiwd93",
.owner = THIS_MODULE,
--
1.6.4.3
--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 25/34] don't use __devexit_p to wrap snirm710_driver_remove
[not found] <20091001082607.GA2181@pengutronix.de>
` (5 preceding siblings ...)
2009-10-01 8:28 ` [PATCH 23/34] don't use __devexit_p to wrap sgiwd93_remove Uwe Kleine-König
@ 2009-10-01 8:28 ` Uwe Kleine-König
2009-10-01 8:28 ` [PATCH 27/34] move stex_remove to .devexit.text Uwe Kleine-König
2009-10-01 8:28 ` [PATCH 32/34] don't use __devexit_p to wrap zalon_remove Uwe Kleine-König
8 siblings, 0 replies; 11+ messages in thread
From: Uwe Kleine-König @ 2009-10-01 8:28 UTC (permalink / raw)
To: linux-kernel
Cc: Sam Ravnborg, Andrew Morton, James E.J. Bottomley, Yang Hongyang,
Kay Sievers, James Bottomley, Greg Kroah-Hartman, linux-scsi
The function snirm710_driver_remove is defined using __exit, so don't
use __devexit_p but __exit_p to wrap it.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: James E.J. Bottomley <James.Bottomley@suse.de>
Cc: Yang Hongyang <yanghy@cn.fujitsu.com>
Cc: Kay Sievers <kay.sievers@vrfy.org>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Cc: Greg Kroah-Hartman <gregkh@suse.de>
Cc: linux-scsi@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
---
drivers/scsi/sni_53c710.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/scsi/sni_53c710.c b/drivers/scsi/sni_53c710.c
index 37b3359..491a088 100644
--- a/drivers/scsi/sni_53c710.c
+++ b/drivers/scsi/sni_53c710.c
@@ -133,7 +133,7 @@ static int __exit snirm710_driver_remove(struct platform_device *dev)
static struct platform_driver snirm710_driver = {
.probe = snirm710_probe,
- .remove = __devexit_p(snirm710_driver_remove),
+ .remove = __exit_p(snirm710_driver_remove),
.driver = {
.name = "snirm_53c710",
.owner = THIS_MODULE,
--
1.6.4.3
--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 27/34] move stex_remove to .devexit.text
[not found] <20091001082607.GA2181@pengutronix.de>
` (6 preceding siblings ...)
2009-10-01 8:28 ` [PATCH 25/34] don't use __devexit_p to wrap snirm710_driver_remove Uwe Kleine-König
@ 2009-10-01 8:28 ` Uwe Kleine-König
2009-10-01 8:28 ` [PATCH 32/34] don't use __devexit_p to wrap zalon_remove Uwe Kleine-König
8 siblings, 0 replies; 11+ messages in thread
From: Uwe Kleine-König @ 2009-10-01 8:28 UTC (permalink / raw)
To: linux-kernel
Cc: Sam Ravnborg, Andrew Morton, Willem Riede, James E.J. Bottomley,
Kai Mäkisara, James Bottomley, Ed Lin, Yang Hongyang,
linux-scsi, osst-users
The function stex_remove is used only wrapped by __devexit_p so define
it using __devexit.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Cc: Willem Riede <osst@riede.org>
Cc: James E.J. Bottomley <James.Bottomley@suse.de>
Cc: "Kai Mäkisara" <Kai.Makisara@kolumbus.fi>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Cc: Ed Lin <ed.lin@promise.com>
Cc: Yang Hongyang <yanghy@cn.fujitsu.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: linux-scsi@vger.kernel.org
Cc: osst-users@lists.sourceforge.net
Cc: linux-kernel@vger.kernel.org
---
drivers/scsi/stex.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/scsi/stex.c b/drivers/scsi/stex.c
index 09fa886..09ee386 100644
--- a/drivers/scsi/stex.c
+++ b/drivers/scsi/stex.c
@@ -1679,7 +1679,7 @@ static void stex_hba_free(struct st_hba *hba)
hba->dma_mem, hba->dma_handle);
}
-static void stex_remove(struct pci_dev *pdev)
+static void __devexit stex_remove(struct pci_dev *pdev)
{
struct st_hba *hba = pci_get_drvdata(pdev);
--
1.6.4.3
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 32/34] don't use __devexit_p to wrap zalon_remove
[not found] <20091001082607.GA2181@pengutronix.de>
` (7 preceding siblings ...)
2009-10-01 8:28 ` [PATCH 27/34] move stex_remove to .devexit.text Uwe Kleine-König
@ 2009-10-01 8:28 ` Uwe Kleine-König
8 siblings, 0 replies; 11+ messages in thread
From: Uwe Kleine-König @ 2009-10-01 8:28 UTC (permalink / raw)
To: linux-kernel
Cc: Sam Ravnborg, Andrew Morton, James E.J. Bottomley,
James Bottomley, Kyle McMartin, Kay Sievers, Helge Deller,
linux-scsi
The function zalon_remove is defined using __exit, so don't use __devexit_p
but __exit_p to wrap it.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: James E.J. Bottomley <James.Bottomley@suse.de>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Cc: Kay Sievers <kay.sievers@vrfy.org>
Cc: Helge Deller <deller@gmx.de>
Cc: linux-scsi@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
---
drivers/scsi/zalon.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/scsi/zalon.c b/drivers/scsi/zalon.c
index 27e84e4..19120a6 100644
--- a/drivers/scsi/zalon.c
+++ b/drivers/scsi/zalon.c
@@ -182,7 +182,7 @@ static struct parisc_driver zalon_driver = {
.name = "zalon",
.id_table = zalon_tbl,
.probe = zalon_probe,
- .remove = __devexit_p(zalon_remove),
+ .remove = __exit_p(zalon_remove),
};
static int __init zalon7xx_init(void)
--
1.6.4.3
--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH 02/34] move atp870u_remove to .devexit.text
2009-10-01 8:28 ` [PATCH 02/34] move atp870u_remove to .devexit.text Uwe Kleine-König
@ 2009-10-01 14:20 ` James Bottomley
2009-10-02 19:13 ` Uwe Kleine-König
0 siblings, 1 reply; 11+ messages in thread
From: James Bottomley @ 2009-10-01 14:20 UTC (permalink / raw)
To: Uwe Kleine-König
Cc: linux-kernel, Sam Ravnborg, Andrew Morton, Yang Hongyang,
Alan Cox, linux-scsi
On Thu, 2009-10-01 at 10:28 +0200, Uwe Kleine-König wrote:
> The function atp870u_remove is used only wrapped by __devexit_p so define
> it using __devexit.
What's the justification for this?
Given that practically every kernel on the planet is hotplug enabled
these days and that the savings on the very few that aren't from
discarding the devexit section is at most a page or two (and even arm
says they don't care about that), there doesn't seem to be any point
making these changes. In fact, I think we can just kill devinit and
devexit as section markers.
James
--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 02/34] move atp870u_remove to .devexit.text
2009-10-01 14:20 ` James Bottomley
@ 2009-10-02 19:13 ` Uwe Kleine-König
0 siblings, 0 replies; 11+ messages in thread
From: Uwe Kleine-König @ 2009-10-02 19:13 UTC (permalink / raw)
To: James Bottomley
Cc: linux-kernel, Sam Ravnborg, Andrew Morton, Yang Hongyang,
Alan Cox, linux-scsi
Hello,
On Thu, Oct 01, 2009 at 02:20:02PM +0000, James Bottomley wrote:
> Given that practically every kernel on the planet is hotplug enabled
> these days and that the savings on the very few that aren't from
> discarding the devexit section is at most a page or two (and even arm
> says they don't care about that), there doesn't seem to be any point
> making these changes. In fact, I think we can just kill devinit and
> devexit as section markers.
IMHO you should better kill CONFIG_HOTPLUG completely then.
Best regards
Uwe
--
Pengutronix e.K. | Uwe Kleine-König |
Industrial Linux Solutions | http://www.pengutronix.de/ |
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2009-10-02 19:13 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20091001082607.GA2181@pengutronix.de>
2009-10-01 8:28 ` [PATCH 02/34] move atp870u_remove to .devexit.text Uwe Kleine-König
2009-10-01 14:20 ` James Bottomley
2009-10-02 19:13 ` Uwe Kleine-König
2009-10-01 8:28 ` [PATCH 08/34] move initio_remove_one " Uwe Kleine-König
2009-10-01 8:28 ` [PATCH 10/34] don't use __devexit_p to wrap lasi700_driver_remove Uwe Kleine-König
2009-10-01 8:28 ` [PATCH 12/34] move megaraid_detach_one to .devexit.text Uwe Kleine-König
2009-10-01 8:28 ` [PATCH 18/34] don't use __devexit_p to wrap NCR_Q720_remove Uwe Kleine-König
2009-10-01 8:28 ` [PATCH 23/34] don't use __devexit_p to wrap sgiwd93_remove Uwe Kleine-König
2009-10-01 8:28 ` [PATCH 25/34] don't use __devexit_p to wrap snirm710_driver_remove Uwe Kleine-König
2009-10-01 8:28 ` [PATCH 27/34] move stex_remove to .devexit.text Uwe Kleine-König
2009-10-01 8:28 ` [PATCH 32/34] don't use __devexit_p to wrap zalon_remove Uwe Kleine-König
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox