* [PATCH 01/38] move asic3_remove to .devexit.text
@ 2009-11-24 21:06 Uwe Kleine-König
2009-11-24 21:06 ` Uwe Kleine-König
2009-11-24 23:24 ` [PATCH 01/38] move asic3_remove " Samuel Ortiz
0 siblings, 2 replies; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:06 UTC (permalink / raw)
To: linux-kernel; +Cc: akpm, Samuel Ortiz, Philipp Zabel, Yinghai Lu, Russell King
The function asic3_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: Samuel Ortiz <sameo@linux.intel.com>
Cc: Philipp Zabel <philipp.zabel@gmail.com>
Cc: Yinghai Lu <yhlu.kernel@gmail.com>
Cc: Russell King <rmk+kernel@arm.linux.org.uk>
Cc: linux-kernel@vger.kernel.org
---
drivers/mfd/asic3.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/mfd/asic3.c b/drivers/mfd/asic3.c
index 63a2a66..e22128c 100644
--- a/drivers/mfd/asic3.c
+++ b/drivers/mfd/asic3.c
@@ -908,7 +908,7 @@ static int __init asic3_probe(struct platform_device *pdev)
return ret;
}
-static int asic3_remove(struct platform_device *pdev)
+static int __devexit asic3_remove(struct platform_device *pdev)
{
int ret;
struct asic3 *asic = platform_get_drvdata(pdev);
--
1.6.5.2
^ permalink raw reply related [flat|nested] 71+ messages in thread* [PATCH 02/38] move atp870u_remove to .devexit.text
2009-11-24 21:06 [PATCH 01/38] move asic3_remove to .devexit.text Uwe Kleine-König
@ 2009-11-24 21:06 ` Uwe Kleine-König
2009-11-24 23:24 ` [PATCH 01/38] move asic3_remove " Samuel Ortiz
1 sibling, 0 replies; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:06 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, James E.J. Bottomley, Yang Hongyang, James Bottomley,
Alan Cox, linux-scsi, Alan Cox
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@linux.intel.com>
Cc: linux-scsi@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: Alan Cox <alan@redhat.com>
---
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.5.2
--
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] 71+ messages in thread* [PATCH 02/38] move atp870u_remove to .devexit.text
@ 2009-11-24 21:06 ` Uwe Kleine-König
0 siblings, 0 replies; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:06 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, James E.J. Bottomley, Yang Hongyang, James Bottomley,
Alan Cox, linux-scsi, Alan Cox
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@linux.intel.com>
Cc: linux-scsi@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: Alan Cox <alan@redhat.com>
---
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.5.2
^ permalink raw reply related [flat|nested] 71+ messages in thread* [PATCH 03/38] move excite_nand_remove to .devexit.text
2009-11-24 21:06 ` Uwe Kleine-König
@ 2009-11-24 21:06 ` Uwe Kleine-König
-1 siblings, 0 replies; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:06 UTC (permalink / raw)
To: linux-kernel
Cc: David Brownell, Ming Lei, Greg Kroah-Hartman, linux-mtd,
Henrique de Moraes Holschuh, akpm, David Woodhouse
The function excite_nand_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>
Cc: Ming Lei <tom.leiming@gmail.com>
Cc: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
Cc: Greg Kroah-Hartman <gregkh@suse.de>
Cc: David Brownell <dbrownell@users.sourceforge.net>
Cc: linux-kernel@vger.kernel.org
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: linux-mtd@lists.infradead.org
---
drivers/mtd/nand/excite_nandflash.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/mtd/nand/excite_nandflash.c b/drivers/mtd/nand/excite_nandflash.c
index 72446fb..af6a6a5 100644
--- a/drivers/mtd/nand/excite_nandflash.c
+++ b/drivers/mtd/nand/excite_nandflash.c
@@ -128,7 +128,7 @@ static int excite_nand_devready(struct mtd_info *mtd)
* The binding to the mtd and all allocated
* resources are released.
*/
-static int __exit excite_nand_remove(struct platform_device *dev)
+static int __devexit excite_nand_remove(struct platform_device *dev)
{
struct excite_nand_drvdata * const this = platform_get_drvdata(dev);
--
1.6.5.2
^ permalink raw reply related [flat|nested] 71+ messages in thread* [PATCH 03/38] move excite_nand_remove to .devexit.text
@ 2009-11-24 21:06 ` Uwe Kleine-König
0 siblings, 0 replies; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:06 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, Ming Lei, Henrique de Moraes Holschuh, Greg Kroah-Hartman,
David Brownell, David Woodhouse, linux-mtd
The function excite_nand_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>
Cc: Ming Lei <tom.leiming@gmail.com>
Cc: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
Cc: Greg Kroah-Hartman <gregkh@suse.de>
Cc: David Brownell <dbrownell@users.sourceforge.net>
Cc: linux-kernel@vger.kernel.org
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: linux-mtd@lists.infradead.org
---
drivers/mtd/nand/excite_nandflash.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/mtd/nand/excite_nandflash.c b/drivers/mtd/nand/excite_nandflash.c
index 72446fb..af6a6a5 100644
--- a/drivers/mtd/nand/excite_nandflash.c
+++ b/drivers/mtd/nand/excite_nandflash.c
@@ -128,7 +128,7 @@ static int excite_nand_devready(struct mtd_info *mtd)
* The binding to the mtd and all allocated
* resources are released.
*/
-static int __exit excite_nand_remove(struct platform_device *dev)
+static int __devexit excite_nand_remove(struct platform_device *dev)
{
struct excite_nand_drvdata * const this = platform_get_drvdata(dev);
--
1.6.5.2
^ permalink raw reply related [flat|nested] 71+ messages in thread* [PATCH 04/38] move ilo_remove to .devexit.text
2009-11-24 21:06 ` Uwe Kleine-König
(?)
@ 2009-11-24 21:06 ` Uwe Kleine-König
2009-11-24 21:07 ` Uwe Kleine-König
-1 siblings, 1 reply; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:06 UTC (permalink / raw)
To: linux-kernel; +Cc: akpm, Greg Kroah-Hartman, Alexey Dobriyan
The function ilo_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>
Acked-by: David Altobelli <david.altobelli@hp.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Greg Kroah-Hartman <gregkh@suse.de>
Cc: linux-kernel@vger.kernel.org
Cc: Alexey Dobriyan <adobriyan@gmail.com>
---
drivers/misc/hpilo.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/misc/hpilo.c b/drivers/misc/hpilo.c
index a92a3a7..487e603 100644
--- a/drivers/misc/hpilo.c
+++ b/drivers/misc/hpilo.c
@@ -716,7 +716,7 @@ out:
return error;
}
-static void ilo_remove(struct pci_dev *pdev)
+static void __devexit ilo_remove(struct pci_dev *pdev)
{
int i, minor;
struct ilo_hwinfo *ilo_hw = pci_get_drvdata(pdev);
--
1.6.5.2
^ permalink raw reply related [flat|nested] 71+ messages in thread* [PATCH 05/38] move initio_remove_one to .devexit.text
2009-11-24 21:06 ` [PATCH 04/38] move ilo_remove " Uwe Kleine-König
@ 2009-11-24 21:07 ` Uwe Kleine-König
0 siblings, 0 replies; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, James E.J. Bottomley, Yang Hongyang, James Bottomley,
Alan Cox, linux-scsi, Alan Cox
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@linux.intel.com>
Cc: linux-scsi@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: Alan Cox <alan@redhat.com>
---
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.5.2
--
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] 71+ messages in thread* [PATCH 05/38] move initio_remove_one to .devexit.text
@ 2009-11-24 21:07 ` Uwe Kleine-König
0 siblings, 0 replies; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, James E.J. Bottomley, Yang Hongyang, James Bottomley,
Alan Cox, linux-scsi, Alan Cox
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@linux.intel.com>
Cc: linux-scsi@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: Alan Cox <alan@redhat.com>
---
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.5.2
^ permalink raw reply related [flat|nested] 71+ messages in thread* [PATCH 06/38] move iodev_remove to .devexit.text
2009-11-24 21:07 ` Uwe Kleine-König
(?)
@ 2009-11-24 21:07 ` Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 07/38] move lasi700_driver_remove " Uwe Kleine-König
2009-11-27 8:16 ` [PATCH 06/38] move iodev_remove " Ralf Baechle
-1 siblings, 2 replies; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, Ming Lei, Henrique de Moraes Holschuh, Greg Kroah-Hartman,
David Brownell, Ralf Baechle, linux-mips
The function iodev_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>
Cc: Ming Lei <tom.leiming@gmail.com>
Cc: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
Cc: Greg Kroah-Hartman <gregkh@suse.de>
Cc: David Brownell <dbrownell@users.sourceforge.net>
Cc: linux-kernel@vger.kernel.org
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: linux-mips@linux-mips.org
---
arch/mips/basler/excite/excite_iodev.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/mips/basler/excite/excite_iodev.c b/arch/mips/basler/excite/excite_iodev.c
index 938b1d0..733b242 100644
--- a/arch/mips/basler/excite/excite_iodev.c
+++ b/arch/mips/basler/excite/excite_iodev.c
@@ -34,7 +34,7 @@
static const struct resource *iodev_get_resource(struct platform_device *, const char *, unsigned int);
static int __init iodev_probe(struct platform_device *);
-static int __exit iodev_remove(struct platform_device *);
+static int __devexit iodev_remove(struct platform_device *);
static int iodev_open(struct inode *, struct file *);
static int iodev_release(struct inode *, struct file *);
static ssize_t iodev_read(struct file *, char __user *, size_t s, loff_t *);
@@ -103,7 +103,7 @@ static int __init iodev_probe(struct platform_device *dev)
-static int __exit iodev_remove(struct platform_device *dev)
+static int __devexit iodev_remove(struct platform_device *dev)
{
return misc_deregister(&miscdev);
}
--
1.6.5.2
^ permalink raw reply related [flat|nested] 71+ messages in thread* [PATCH 07/38] move lasi700_driver_remove to .devexit.text
2009-11-24 21:07 ` [PATCH 06/38] move iodev_remove " Uwe Kleine-König
@ 2009-11-24 21:07 ` Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 08/38] move mcf_remove " Uwe Kleine-König
2009-11-27 8:16 ` [PATCH 06/38] move iodev_remove " Ralf Baechle
1 sibling, 1 reply; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, James E.J. Bottomley, Yang Hongyang, Kyle McMartin,
Kay Sievers, James Bottomley, linux-scsi, Helge Deller
The function lasi700_driver_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>
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
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Helge Deller <deller@gmx.de>
---
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..a192914 100644
--- a/drivers/scsi/lasi700.c
+++ b/drivers/scsi/lasi700.c
@@ -147,7 +147,7 @@ lasi700_probe(struct parisc_device *dev)
return -ENODEV;
}
-static int __exit
+static int __devexit
lasi700_driver_remove(struct parisc_device *dev)
{
struct Scsi_Host *host = dev_get_drvdata(&dev->dev);
--
1.6.5.2
^ permalink raw reply related [flat|nested] 71+ messages in thread* [PATCH 08/38] move mcf_remove to .devexit.text
2009-11-24 21:07 ` [PATCH 07/38] move lasi700_driver_remove " Uwe Kleine-König
@ 2009-11-24 21:07 ` Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 09/38] move megaraid_detach_one " Uwe Kleine-König
2009-11-25 1:22 ` [PATCH 08/38] move mcf_remove to .devexit.text Greg Ungerer
0 siblings, 2 replies; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, Greg Ungerer, Len Sorensen, Greg Kroah-Hartman, Alan Cox
The function mcf_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>
Cc: Greg Ungerer <gerg@uclinux.org>
Cc: Len Sorensen <lsorense@csclub.uwaterloo.ca>
Cc: Greg Kroah-Hartman <gregkh@suse.de>
Cc: Alan Cox <alan@linux.intel.com>
Cc: linux-kernel@vger.kernel.org
---
drivers/serial/mcf.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/serial/mcf.c b/drivers/serial/mcf.c
index b443824..7bb5fee 100644
--- a/drivers/serial/mcf.c
+++ b/drivers/serial/mcf.c
@@ -602,7 +602,7 @@ static int __devinit mcf_probe(struct platform_device *pdev)
/****************************************************************************/
-static int mcf_remove(struct platform_device *pdev)
+static int __devexit mcf_remove(struct platform_device *pdev)
{
struct uart_port *port;
int i;
--
1.6.5.2
^ permalink raw reply related [flat|nested] 71+ messages in thread* [PATCH 09/38] move megaraid_detach_one to .devexit.text
2009-11-24 21:07 ` [PATCH 08/38] move mcf_remove " Uwe Kleine-König
@ 2009-11-24 21:07 ` Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 10/38] don't wrap mlx4_remove_one in __devexit_p Uwe Kleine-König
2009-11-25 1:22 ` [PATCH 08/38] move mcf_remove to .devexit.text Greg Ungerer
1 sibling, 1 reply; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, 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.5.2
^ permalink raw reply related [flat|nested] 71+ messages in thread* [PATCH 10/38] don't wrap mlx4_remove_one in __devexit_p
2009-11-24 21:07 ` [PATCH 09/38] move megaraid_detach_one " Uwe Kleine-König
@ 2009-11-24 21:07 ` Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 11/38] move mpc85xx_pci_err_remove to .devexit.text Uwe Kleine-König
2009-11-25 9:19 ` [PATCH 10/38] don't wrap mlx4_remove_one in __devexit_p Franco Fichtner
0 siblings, 2 replies; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, Roland Dreier, Yevgeny Petrilin, Yang Hongyang,
Jack Morgenstein, Eli Cohen, netdev
The function mlx4_remove_one is defined in .text, so there is no need to
wrap it with __devexit_p.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: Roland Dreier <rolandd@cisco.com>
Cc: Yevgeny Petrilin <yevgenyp@mellanox.co.il>
Cc: Yang Hongyang <yanghy@cn.fujitsu.com>
Cc: Jack Morgenstein <jackm@dev.mellanox.co.il>
Cc: Eli Cohen <eli@mellanox.co.il>
Cc: linux-kernel@vger.kernel.org
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: netdev@vger.kernel.org
---
drivers/net/mlx4/main.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/net/mlx4/main.c b/drivers/net/mlx4/main.c
index 291a505..a581860 100644
--- a/drivers/net/mlx4/main.c
+++ b/drivers/net/mlx4/main.c
@@ -1293,7 +1293,7 @@ static struct pci_driver mlx4_driver = {
.name = DRV_NAME,
.id_table = mlx4_pci_table,
.probe = mlx4_init_one,
- .remove = __devexit_p(mlx4_remove_one)
+ .remove = mlx4_remove_one
};
static int __init mlx4_verify_params(void)
--
1.6.5.2
^ permalink raw reply related [flat|nested] 71+ messages in thread* [PATCH 11/38] move mpc85xx_pci_err_remove to .devexit.text
2009-11-24 21:07 ` [PATCH 10/38] don't wrap mlx4_remove_one in __devexit_p Uwe Kleine-König
@ 2009-11-24 21:07 ` Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 12/38] move mv64x60_pci_err_remove " Uwe Kleine-König
2009-11-25 9:19 ` [PATCH 10/38] don't wrap mlx4_remove_one in __devexit_p Franco Fichtner
1 sibling, 1 reply; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, Doug Thompson, Dave Jiang, Kumar Gala, Yang Shi,
Ira W. Snyder
The function mpc85xx_pci_err_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: Andrew Morton <akpm@linux-foundation.org>
Cc: Doug Thompson <dougthompson@xmission.com>
Cc: Dave Jiang <djiang@mvista.com>
Cc: Kumar Gala <galak@kernel.crashing.org>
Cc: Yang Shi <yang.shi@windriver.com>
Cc: linux-kernel@vger.kernel.org
Cc: Ira W. Snyder <iws@ovro.caltech.edu>
---
drivers/edac/mpc85xx_edac.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/edac/mpc85xx_edac.c b/drivers/edac/mpc85xx_edac.c
index cf27402..72b06c0 100644
--- a/drivers/edac/mpc85xx_edac.c
+++ b/drivers/edac/mpc85xx_edac.c
@@ -306,7 +306,7 @@ err:
return res;
}
-static int mpc85xx_pci_err_remove(struct of_device *op)
+static int __devexit mpc85xx_pci_err_remove(struct of_device *op)
{
struct edac_pci_ctl_info *pci = dev_get_drvdata(&op->dev);
struct mpc85xx_pci_pdata *pdata = pci->pvt_info;
--
1.6.5.2
^ permalink raw reply related [flat|nested] 71+ messages in thread* [PATCH 12/38] move mv64x60_pci_err_remove to .devexit.text
2009-11-24 21:07 ` [PATCH 11/38] move mpc85xx_pci_err_remove to .devexit.text Uwe Kleine-König
@ 2009-11-24 21:07 ` Uwe Kleine-König
2009-11-24 21:07 ` Uwe Kleine-König
0 siblings, 1 reply; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, Kay Sievers, Greg Kroah-Hartman, Doug Thompson,
Julia Lawall
The function mv64x60_pci_err_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: Kay Sievers <kay.sievers@vrfy.org>
Cc: Greg Kroah-Hartman <gregkh@suse.de>
Cc: linux-kernel@vger.kernel.org
Cc: Doug Thompson <dougthompson@xmission.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Julia Lawall <julia@diku.dk>
---
drivers/edac/mv64x60_edac.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/edac/mv64x60_edac.c b/drivers/edac/mv64x60_edac.c
index a6b9fec..ed25d73 100644
--- a/drivers/edac/mv64x60_edac.c
+++ b/drivers/edac/mv64x60_edac.c
@@ -206,7 +206,7 @@ err:
return res;
}
-static int mv64x60_pci_err_remove(struct platform_device *pdev)
+static int __devexit mv64x60_pci_err_remove(struct platform_device *pdev)
{
struct edac_pci_ctl_info *pci = platform_get_drvdata(pdev);
--
1.6.5.2
^ permalink raw reply related [flat|nested] 71+ messages in thread* [PATCH 13/38] don't use __exit_p to wrap mxcnd_remove
2009-11-24 21:07 ` [PATCH 12/38] move mv64x60_pci_err_remove " Uwe Kleine-König
@ 2009-11-24 21:07 ` Uwe Kleine-König
0 siblings, 0 replies; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel
Cc: Artem Bityutskiy, David Woodhouse, Vladimir Barinov, Sascha Hauer,
Eric Benard, Vladimir Barinov, linux-mtd, akpm, David Woodhouse
The function mxcnd_remove is defined using __devexit, so don't use
__exit_p but __devexit_p to wrap it.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: David Woodhouse <David.Woodhouse@intel.com>
Cc: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Cc: Sascha Hauer <s.hauer@pengutronix.de>
Cc: Vladimir Barinov <vova.barinov@gmail.com>
Cc: Vladimir Barinov <vbarinov@embeddedalley.com>
Cc: linux-mtd@lists.infradead.org
Cc: linux-kernel@vger.kernel.org
Cc: Eric Benard <ebenard@eukrea.com>
---
drivers/mtd/nand/mxc_nand.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/mtd/nand/mxc_nand.c b/drivers/mtd/nand/mxc_nand.c
index 65b26d5..661d46a 100644
--- a/drivers/mtd/nand/mxc_nand.c
+++ b/drivers/mtd/nand/mxc_nand.c
@@ -1113,7 +1113,7 @@ static struct platform_driver mxcnd_driver = {
.driver = {
.name = DRIVER_NAME,
},
- .remove = __exit_p(mxcnd_remove),
+ .remove = __devexit_p(mxcnd_remove),
.suspend = mxcnd_suspend,
.resume = mxcnd_resume,
};
--
1.6.5.2
^ permalink raw reply related [flat|nested] 71+ messages in thread* [PATCH 13/38] don't use __exit_p to wrap mxcnd_remove
@ 2009-11-24 21:07 ` Uwe Kleine-König
0 siblings, 0 replies; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, David Woodhouse, David Woodhouse, Artem Bityutskiy,
Sascha Hauer, Vladimir Barinov, Vladimir Barinov, linux-mtd,
Eric Benard
The function mxcnd_remove is defined using __devexit, so don't use
__exit_p but __devexit_p to wrap it.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: David Woodhouse <David.Woodhouse@intel.com>
Cc: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Cc: Sascha Hauer <s.hauer@pengutronix.de>
Cc: Vladimir Barinov <vova.barinov@gmail.com>
Cc: Vladimir Barinov <vbarinov@embeddedalley.com>
Cc: linux-mtd@lists.infradead.org
Cc: linux-kernel@vger.kernel.org
Cc: Eric Benard <ebenard@eukrea.com>
---
drivers/mtd/nand/mxc_nand.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/mtd/nand/mxc_nand.c b/drivers/mtd/nand/mxc_nand.c
index 65b26d5..661d46a 100644
--- a/drivers/mtd/nand/mxc_nand.c
+++ b/drivers/mtd/nand/mxc_nand.c
@@ -1113,7 +1113,7 @@ static struct platform_driver mxcnd_driver = {
.driver = {
.name = DRIVER_NAME,
},
- .remove = __exit_p(mxcnd_remove),
+ .remove = __devexit_p(mxcnd_remove),
.suspend = mxcnd_suspend,
.resume = mxcnd_resume,
};
--
1.6.5.2
^ permalink raw reply related [flat|nested] 71+ messages in thread* [PATCH 14/38] move NCR_Q720_remove to .devexit.text
2009-11-24 21:07 ` Uwe Kleine-König
@ 2009-11-24 21:07 ` Uwe Kleine-König
-1 siblings, 0 replies; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel; +Cc: akpm, James E.J. Bottomley, linux-scsi
The function NCR_Q720_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>
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..1a398a8 100644
--- a/drivers/scsi/NCR_Q720.c
+++ b/drivers/scsi/NCR_Q720.c
@@ -325,7 +325,7 @@ NCR_Q720_remove_one(struct Scsi_Host *host)
ncr53c8xx_release(host);
}
-static int __exit
+static int __devexit
NCR_Q720_remove(struct device *dev)
{
struct NCR_Q720_private *p = dev_get_drvdata(dev);
--
1.6.5.2
--
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] 71+ messages in thread* [PATCH 14/38] move NCR_Q720_remove to .devexit.text
@ 2009-11-24 21:07 ` Uwe Kleine-König
0 siblings, 0 replies; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel; +Cc: akpm, James E.J. Bottomley, linux-scsi
The function NCR_Q720_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>
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..1a398a8 100644
--- a/drivers/scsi/NCR_Q720.c
+++ b/drivers/scsi/NCR_Q720.c
@@ -325,7 +325,7 @@ NCR_Q720_remove_one(struct Scsi_Host *host)
ncr53c8xx_release(host);
}
-static int __exit
+static int __devexit
NCR_Q720_remove(struct device *dev)
{
struct NCR_Q720_private *p = dev_get_drvdata(dev);
--
1.6.5.2
^ permalink raw reply related [flat|nested] 71+ messages in thread* [PATCH 15/38] move s3c_adc_remove to .devexit.text
2009-11-24 21:07 ` Uwe Kleine-König
@ 2009-11-24 21:07 ` Uwe Kleine-König
-1 siblings, 0 replies; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-arm-kernel
The function s3c_adc_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: Russell King <linux@arm.linux.org.uk>
Acked-By: Ben Dooks <ben@simtec.co.uk>
Cc: Ramax Lo <ramaxlo@gmail.com>
Cc: Nelson Castillo <arhuaco@freaks-unidos.net>
Cc: linux-kernel at vger.kernel.org
Cc: Ben Dooks <ben-linux@fluff.org>
Cc: Alexey Dobriyan <adobriyan@gmail.com>
Cc: Ryan Mallon <ryan@bluewatersys.com>
Cc: linux-arm-kernel at lists.infradead.org
---
arch/arm/plat-s3c24xx/adc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/arm/plat-s3c24xx/adc.c b/arch/arm/plat-s3c24xx/adc.c
index df47322..ce47627 100644
--- a/arch/arm/plat-s3c24xx/adc.c
+++ b/arch/arm/plat-s3c24xx/adc.c
@@ -365,7 +365,7 @@ static int s3c_adc_probe(struct platform_device *pdev)
return ret;
}
-static int s3c_adc_remove(struct platform_device *pdev)
+static int __devexit s3c_adc_remove(struct platform_device *pdev)
{
struct adc_device *adc = platform_get_drvdata(pdev);
--
1.6.5.2
^ permalink raw reply related [flat|nested] 71+ messages in thread* [PATCH 15/38] move s3c_adc_remove to .devexit.text
@ 2009-11-24 21:07 ` Uwe Kleine-König
0 siblings, 0 replies; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, Russell King, Ramax Lo, Nelson Castillo, Ben Dooks,
Alexey Dobriyan, Ryan Mallon, linux-arm-kernel
The function s3c_adc_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: Russell King <linux@arm.linux.org.uk>
Acked-By: Ben Dooks <ben@simtec.co.uk>
Cc: Ramax Lo <ramaxlo@gmail.com>
Cc: Nelson Castillo <arhuaco@freaks-unidos.net>
Cc: linux-kernel@vger.kernel.org
Cc: Ben Dooks <ben-linux@fluff.org>
Cc: Alexey Dobriyan <adobriyan@gmail.com>
Cc: Ryan Mallon <ryan@bluewatersys.com>
Cc: linux-arm-kernel@lists.infradead.org
---
arch/arm/plat-s3c24xx/adc.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/arm/plat-s3c24xx/adc.c b/arch/arm/plat-s3c24xx/adc.c
index df47322..ce47627 100644
--- a/arch/arm/plat-s3c24xx/adc.c
+++ b/arch/arm/plat-s3c24xx/adc.c
@@ -365,7 +365,7 @@ static int s3c_adc_probe(struct platform_device *pdev)
return ret;
}
-static int s3c_adc_remove(struct platform_device *pdev)
+static int __devexit s3c_adc_remove(struct platform_device *pdev)
{
struct adc_device *adc = platform_get_drvdata(pdev);
--
1.6.5.2
^ permalink raw reply related [flat|nested] 71+ messages in thread* [PATCH 16/38] move s3c_pwm_remove to .devexit.text
2009-11-24 21:07 ` Uwe Kleine-König
@ 2009-11-24 21:07 ` Uwe Kleine-König
-1 siblings, 0 replies; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-arm-kernel
The function s3c_pwm_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: Russell King <linux@arm.linux.org.uk>
Cc: Ben Dooks <ben-linux@fluff.org>
Cc: Peter Korsgaard <jacmet@sunsite.dk>
Cc: linux-kernel at vger.kernel.org
Cc: linux-arm-kernel at lists.infradead.org
---
arch/arm/plat-s3c/pwm.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/arm/plat-s3c/pwm.c b/arch/arm/plat-s3c/pwm.c
index 4fdc5b3..ef019f2 100644
--- a/arch/arm/plat-s3c/pwm.c
+++ b/arch/arm/plat-s3c/pwm.c
@@ -368,7 +368,7 @@ static int s3c_pwm_probe(struct platform_device *pdev)
return ret;
}
-static int s3c_pwm_remove(struct platform_device *pdev)
+static int __devexit s3c_pwm_remove(struct platform_device *pdev)
{
struct pwm_device *pwm = platform_get_drvdata(pdev);
--
1.6.5.2
^ permalink raw reply related [flat|nested] 71+ messages in thread* [PATCH 16/38] move s3c_pwm_remove to .devexit.text
@ 2009-11-24 21:07 ` Uwe Kleine-König
0 siblings, 0 replies; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, Russell King, Ben Dooks, Peter Korsgaard, linux-arm-kernel
The function s3c_pwm_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: Russell King <linux@arm.linux.org.uk>
Cc: Ben Dooks <ben-linux@fluff.org>
Cc: Peter Korsgaard <jacmet@sunsite.dk>
Cc: linux-kernel@vger.kernel.org
Cc: linux-arm-kernel@lists.infradead.org
---
arch/arm/plat-s3c/pwm.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/arm/plat-s3c/pwm.c b/arch/arm/plat-s3c/pwm.c
index 4fdc5b3..ef019f2 100644
--- a/arch/arm/plat-s3c/pwm.c
+++ b/arch/arm/plat-s3c/pwm.c
@@ -368,7 +368,7 @@ static int s3c_pwm_probe(struct platform_device *pdev)
return ret;
}
-static int s3c_pwm_remove(struct platform_device *pdev)
+static int __devexit s3c_pwm_remove(struct platform_device *pdev)
{
struct pwm_device *pwm = platform_get_drvdata(pdev);
--
1.6.5.2
^ permalink raw reply related [flat|nested] 71+ messages in thread* [PATCH 17/38] move sc26xx_driver_remove to .devexit.text
2009-11-24 21:07 ` Uwe Kleine-König
(?)
@ 2009-11-24 21:07 ` Uwe Kleine-König
2009-11-24 21:07 ` Uwe Kleine-König
-1 siblings, 1 reply; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel; +Cc: akpm, Greg Kroah-Hartman, Alan Cox
The function sc26xx_driver_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>
Cc: Greg Kroah-Hartman <gregkh@suse.de>
Cc: Alan Cox <alan@linux.intel.com>
Cc: linux-kernel@vger.kernel.org
---
drivers/serial/sc26xx.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/serial/sc26xx.c b/drivers/serial/sc26xx.c
index 75038ad..ca9bddc 100644
--- a/drivers/serial/sc26xx.c
+++ b/drivers/serial/sc26xx.c
@@ -709,7 +709,7 @@ out_free_port:
}
-static int __exit sc26xx_driver_remove(struct platform_device *dev)
+static int __devexit sc26xx_driver_remove(struct platform_device *dev)
{
struct uart_sc26xx_port *up = dev_get_drvdata(&dev->dev);
--
1.6.5.2
^ permalink raw reply related [flat|nested] 71+ messages in thread* [PATCH 18/38] move sgiwd93_remove to .devexit.text
2009-11-24 21:07 ` [PATCH 17/38] move sc26xx_driver_remove " Uwe Kleine-König
@ 2009-11-24 21:07 ` Uwe Kleine-König
0 siblings, 0 replies; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, James E.J. Bottomley, James Bottomley, Dmitri Vorobiev,
linux-scsi
The function sgiwd93_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>
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..4f33f7a 100644
--- a/drivers/scsi/sgiwd93.c
+++ b/drivers/scsi/sgiwd93.c
@@ -297,7 +297,7 @@ out:
return err;
}
-static int __exit sgiwd93_remove(struct platform_device *pdev)
+static int __devexit sgiwd93_remove(struct platform_device *pdev)
{
struct Scsi_Host *host = platform_get_drvdata(pdev);
struct ip22_hostdata *hdata = (struct ip22_hostdata *) host->hostdata;
--
1.6.5.2
--
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] 71+ messages in thread* [PATCH 18/38] move sgiwd93_remove to .devexit.text
@ 2009-11-24 21:07 ` Uwe Kleine-König
0 siblings, 0 replies; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, James E.J. Bottomley, James Bottomley, Dmitri Vorobiev,
linux-scsi
The function sgiwd93_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>
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..4f33f7a 100644
--- a/drivers/scsi/sgiwd93.c
+++ b/drivers/scsi/sgiwd93.c
@@ -297,7 +297,7 @@ out:
return err;
}
-static int __exit sgiwd93_remove(struct platform_device *pdev)
+static int __devexit sgiwd93_remove(struct platform_device *pdev)
{
struct Scsi_Host *host = platform_get_drvdata(pdev);
struct ip22_hostdata *hdata = (struct ip22_hostdata *) host->hostdata;
--
1.6.5.2
^ permalink raw reply related [flat|nested] 71+ messages in thread* [PATCH 19/38] move snirm710_driver_remove to .devexit.text
2009-11-24 21:07 ` Uwe Kleine-König
(?)
@ 2009-11-24 21:07 ` Uwe Kleine-König
[not found] ` <1259096853-18909-19-git-send-email-u.kleine-koenig-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
-1 siblings, 1 reply; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-24 21:07 UTC (permalink / raw)
To: linux-kernel
Cc: akpm, James E.J. Bottomley, Yang Hongyang, Kay Sievers,
James Bottomley, Greg Kroah-Hartman, linux-scsi
The function snirm710_driver_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>
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
Cc: Andrew Morton <akpm@linux-foundation.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..c941a00 100644
--- a/drivers/scsi/sni_53c710.c
+++ b/drivers/scsi/sni_53c710.c
@@ -116,7 +116,7 @@ static int __init snirm710_probe(struct platform_device *dev)
return -ENODEV;
}
-static int __exit snirm710_driver_remove(struct platform_device *dev)
+static int __devexit snirm710_driver_remove(struct platform_device *dev)
{
struct Scsi_Host *host = dev_get_drvdata(&dev->dev);
struct NCR_700_Host_Parameters *hostdata =
--
1.6.5.2
^ permalink raw reply related [flat|nested] 71+ messages in thread
* [PATCH 16/38] move s3c_pwm_remove to .devexit.text
2009-11-24 21:07 ` Uwe Kleine-König
@ 2009-11-25 8:02 ` Peter Korsgaard
-1 siblings, 0 replies; 71+ messages in thread
From: Peter Korsgaard @ 2009-11-25 8:02 UTC (permalink / raw)
To: linux-arm-kernel
>>>>> "Uwe" == Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de> writes:
Uwe> The function s3c_pwm_remove is used only wrapped by __devexit_p so define
Uwe> it using __devexit.
Uwe> Signed-off-by: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>
Uwe> Acked-by: Sam Ravnborg <sam@ravnborg.org>
Acked-by: Peter Korsgaard <jacmet@sunsite.dk>
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 71+ messages in thread
* Re: [PATCH 16/38] move s3c_pwm_remove to .devexit.text
@ 2009-11-25 8:02 ` Peter Korsgaard
0 siblings, 0 replies; 71+ messages in thread
From: Peter Korsgaard @ 2009-11-25 8:02 UTC (permalink / raw)
To: Uwe Kleine-König
Cc: linux-kernel, akpm, Russell King, Ben Dooks, linux-arm-kernel
>>>>> "Uwe" == Uwe Kleine-König <u.kleine-koenig@pengutronix.de> writes:
Uwe> The function s3c_pwm_remove is used only wrapped by __devexit_p so define
Uwe> it using __devexit.
Uwe> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Uwe> Acked-by: Sam Ravnborg <sam@ravnborg.org>
Acked-by: Peter Korsgaard <jacmet@sunsite.dk>
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 71+ messages in thread
* [PATCH 15/38] move s3c_adc_remove to .devexit.text
2009-11-24 21:07 ` Uwe Kleine-König
@ 2009-12-03 22:07 ` Ben Dooks
-1 siblings, 0 replies; 71+ messages in thread
From: Ben Dooks @ 2009-12-03 22:07 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, Nov 24, 2009 at 10:07:10PM +0100, Uwe Kleine-K?nig wrote:
> The function s3c_adc_remove is used only wrapped by __devexit_p so define
> it using __devexit.
Shall I put these into my tree?
> Signed-off-by: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>
> Acked-by: Sam Ravnborg <sam@ravnborg.org>
> Cc: Russell King <linux@arm.linux.org.uk>
> Acked-By: Ben Dooks <ben@simtec.co.uk>
> Cc: Ramax Lo <ramaxlo@gmail.com>
> Cc: Nelson Castillo <arhuaco@freaks-unidos.net>
> Cc: linux-kernel at vger.kernel.org
> Cc: Ben Dooks <ben-linux@fluff.org>
> Cc: Alexey Dobriyan <adobriyan@gmail.com>
> Cc: Ryan Mallon <ryan@bluewatersys.com>
> Cc: linux-arm-kernel at lists.infradead.org
> ---
> arch/arm/plat-s3c24xx/adc.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/arch/arm/plat-s3c24xx/adc.c b/arch/arm/plat-s3c24xx/adc.c
> index df47322..ce47627 100644
> --- a/arch/arm/plat-s3c24xx/adc.c
> +++ b/arch/arm/plat-s3c24xx/adc.c
> @@ -365,7 +365,7 @@ static int s3c_adc_probe(struct platform_device *pdev)
> return ret;
> }
>
> -static int s3c_adc_remove(struct platform_device *pdev)
> +static int __devexit s3c_adc_remove(struct platform_device *pdev)
> {
> struct adc_device *adc = platform_get_drvdata(pdev);
>
> --
> 1.6.5.2
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
--
--
Ben
Q: What's a light-year?
A: One-third less calories than a regular year.
^ permalink raw reply [flat|nested] 71+ messages in thread* Re: [PATCH 15/38] move s3c_adc_remove to .devexit.text
@ 2009-12-03 22:07 ` Ben Dooks
0 siblings, 0 replies; 71+ messages in thread
From: Ben Dooks @ 2009-12-03 22:07 UTC (permalink / raw)
To: Uwe Kleine-König
Cc: linux-kernel, Nelson Castillo, Russell King, Ryan Mallon,
linux-arm-kernel, Ben Dooks, akpm, Alexey Dobriyan, Ramax Lo
On Tue, Nov 24, 2009 at 10:07:10PM +0100, Uwe Kleine-König wrote:
> The function s3c_adc_remove is used only wrapped by __devexit_p so define
> it using __devexit.
Shall I put these into my tree?
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> Acked-by: Sam Ravnborg <sam@ravnborg.org>
> Cc: Russell King <linux@arm.linux.org.uk>
> Acked-By: Ben Dooks <ben@simtec.co.uk>
> Cc: Ramax Lo <ramaxlo@gmail.com>
> Cc: Nelson Castillo <arhuaco@freaks-unidos.net>
> Cc: linux-kernel@vger.kernel.org
> Cc: Ben Dooks <ben-linux@fluff.org>
> Cc: Alexey Dobriyan <adobriyan@gmail.com>
> Cc: Ryan Mallon <ryan@bluewatersys.com>
> Cc: linux-arm-kernel@lists.infradead.org
> ---
> arch/arm/plat-s3c24xx/adc.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/arch/arm/plat-s3c24xx/adc.c b/arch/arm/plat-s3c24xx/adc.c
> index df47322..ce47627 100644
> --- a/arch/arm/plat-s3c24xx/adc.c
> +++ b/arch/arm/plat-s3c24xx/adc.c
> @@ -365,7 +365,7 @@ static int s3c_adc_probe(struct platform_device *pdev)
> return ret;
> }
>
> -static int s3c_adc_remove(struct platform_device *pdev)
> +static int __devexit s3c_adc_remove(struct platform_device *pdev)
> {
> struct adc_device *adc = platform_get_drvdata(pdev);
>
> --
> 1.6.5.2
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
--
--
Ben
Q: What's a light-year?
A: One-third less calories than a regular year.
^ permalink raw reply [flat|nested] 71+ messages in thread* [PATCH 15/38] move s3c_adc_remove to .devexit.text
2009-12-03 22:07 ` Ben Dooks
@ 2009-12-03 22:10 ` Uwe Kleine-König
-1 siblings, 0 replies; 71+ messages in thread
From: Uwe Kleine-König @ 2009-12-03 22:10 UTC (permalink / raw)
To: linux-arm-kernel
Hi Ben,
On Thu, Dec 03, 2009 at 10:07:18PM +0000, Ben Dooks wrote:
> On Tue, Nov 24, 2009 at 10:07:10PM +0100, Uwe Kleine-K?nig wrote:
> > The function s3c_adc_remove is used only wrapped by __devexit_p so define
> > it using __devexit.
>
> Shall I put these into my tree?
Yes, I think your's is the right one.
Thanks
Uwe
--
Pengutronix e.K. | Uwe Kleine-K?nig |
Industrial Linux Solutions | http://www.pengutronix.de/ |
^ permalink raw reply [flat|nested] 71+ messages in thread
* Re: [PATCH 15/38] move s3c_adc_remove to .devexit.text
@ 2009-12-03 22:10 ` Uwe Kleine-König
0 siblings, 0 replies; 71+ messages in thread
From: Uwe Kleine-König @ 2009-12-03 22:10 UTC (permalink / raw)
To: Ben Dooks
Cc: linux-kernel, Nelson Castillo, Russell King, Ryan Mallon,
linux-arm-kernel, akpm, Alexey Dobriyan, Ramax Lo
Hi Ben,
On Thu, Dec 03, 2009 at 10:07:18PM +0000, Ben Dooks wrote:
> On Tue, Nov 24, 2009 at 10:07:10PM +0100, Uwe Kleine-König wrote:
> > The function s3c_adc_remove is used only wrapped by __devexit_p so define
> > it using __devexit.
>
> Shall I put these into my tree?
Yes, I think your's is the right one.
Thanks
Uwe
--
Pengutronix e.K. | Uwe Kleine-König |
Industrial Linux Solutions | http://www.pengutronix.de/ |
^ permalink raw reply [flat|nested] 71+ messages in thread
* Re: [PATCH 10/38] don't wrap mlx4_remove_one in __devexit_p
2009-11-24 21:07 ` [PATCH 10/38] don't wrap mlx4_remove_one in __devexit_p Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 11/38] move mpc85xx_pci_err_remove to .devexit.text Uwe Kleine-König
@ 2009-11-25 9:19 ` Franco Fichtner
2009-11-25 9:23 ` [PATCH] " Uwe Kleine-König
1 sibling, 1 reply; 71+ messages in thread
From: Franco Fichtner @ 2009-11-25 9:19 UTC (permalink / raw)
To: Uwe Kleine-König
Cc: linux-kernel, akpm, Roland Dreier, Yevgeny Petrilin,
Yang Hongyang, Jack Morgenstein, Eli Cohen, netdev
Uwe Kleine-König wrote:
> diff --git a/drivers/net/mlx4/main.c b/drivers/net/mlx4/main.c
> index 291a505..a581860 100644
> --- a/drivers/net/mlx4/main.c
> +++ b/drivers/net/mlx4/main.c
> @@ -1293,7 +1293,7 @@ static struct pci_driver mlx4_driver = {
> .name = DRV_NAME,
> .id_table = mlx4_pci_table,
> .probe = mlx4_init_one,
> - .remove = __devexit_p(mlx4_remove_one)
> + .remove = mlx4_remove_one
>
You may want to add the trailing comma while you're at it...
> };
>
> static int __init mlx4_verify_params(void)
>
f
^ permalink raw reply [flat|nested] 71+ messages in thread* [PATCH] don't wrap mlx4_remove_one in __devexit_p
2009-11-25 9:19 ` [PATCH 10/38] don't wrap mlx4_remove_one in __devexit_p Franco Fichtner
@ 2009-11-25 9:23 ` Uwe Kleine-König
0 siblings, 0 replies; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-25 9:23 UTC (permalink / raw)
To: linux-kernel
Cc: Roland Dreier, Yevgeny Petrilin, Yang Hongyang, Jack Morgenstein,
Eli Cohen, Andrew Morton, netdev, Franco Fichtner
The function mlx4_remove_one is defined in .text, so there is no need to
wrap it with __devexit_p.
While at it add a trailing comma to the section initializer.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: Roland Dreier <rolandd@cisco.com>
Cc: Yevgeny Petrilin <yevgenyp@mellanox.co.il>
Cc: Yang Hongyang <yanghy@cn.fujitsu.com>
Cc: Jack Morgenstein <jackm@dev.mellanox.co.il>
Cc: Eli Cohen <eli@mellanox.co.il>
Cc: linux-kernel@vger.kernel.org
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: netdev@vger.kernel.org
Cc: Franco Fichtner <franco@lastsummer.de>
---
drivers/net/mlx4/main.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/net/mlx4/main.c b/drivers/net/mlx4/main.c
index 291a505..acc2878 100644
--- a/drivers/net/mlx4/main.c
+++ b/drivers/net/mlx4/main.c
@@ -1293,7 +1293,7 @@ static struct pci_driver mlx4_driver = {
.name = DRV_NAME,
.id_table = mlx4_pci_table,
.probe = mlx4_init_one,
- .remove = __devexit_p(mlx4_remove_one)
+ .remove = mlx4_remove_one,
};
static int __init mlx4_verify_params(void)
^ permalink raw reply related [flat|nested] 71+ messages in thread
* Re: [PATCH 08/38] move mcf_remove to .devexit.text
2009-11-24 21:07 ` [PATCH 08/38] move mcf_remove " Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 09/38] move megaraid_detach_one " Uwe Kleine-König
@ 2009-11-25 1:22 ` Greg Ungerer
1 sibling, 0 replies; 71+ messages in thread
From: Greg Ungerer @ 2009-11-25 1:22 UTC (permalink / raw)
To: Uwe Kleine-König
Cc: linux-kernel, akpm, Greg Ungerer, Len Sorensen,
Greg Kroah-Hartman, Alan Cox
Hi Uwe,
Uwe Kleine-König wrote:
> The function mcf_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>
> Cc: Greg Ungerer <gerg@uclinux.org>
> Cc: Len Sorensen <lsorense@csclub.uwaterloo.ca>
> Cc: Greg Kroah-Hartman <gregkh@suse.de>
> Cc: Alan Cox <alan@linux.intel.com>
> Cc: linux-kernel@vger.kernel.org
I have this queued in the for-linus (and for-next) branches for
inclusion in 2.6.33 at:
git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
Regards
Greg
> ---
> drivers/serial/mcf.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/serial/mcf.c b/drivers/serial/mcf.c
> index b443824..7bb5fee 100644
> --- a/drivers/serial/mcf.c
> +++ b/drivers/serial/mcf.c
> @@ -602,7 +602,7 @@ static int __devinit mcf_probe(struct platform_device *pdev)
>
> /****************************************************************************/
>
> -static int mcf_remove(struct platform_device *pdev)
> +static int __devexit mcf_remove(struct platform_device *pdev)
> {
> struct uart_port *port;
> int i;
--
------------------------------------------------------------------------
Greg Ungerer -- Principal Engineer EMAIL: gerg@snapgear.com
SnapGear Group, McAfee PHONE: +61 7 3435 2888
8 Gardner Close FAX: +61 7 3217 5323
Milton, QLD, 4064, Australia WEB: http://www.SnapGear.com
^ permalink raw reply [flat|nested] 71+ messages in thread
* Re: [PATCH 06/38] move iodev_remove to .devexit.text
2009-11-24 21:07 ` [PATCH 06/38] move iodev_remove " Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 07/38] move lasi700_driver_remove " Uwe Kleine-König
@ 2009-11-27 8:16 ` Ralf Baechle
1 sibling, 0 replies; 71+ messages in thread
From: Ralf Baechle @ 2009-11-27 8:16 UTC (permalink / raw)
To: Uwe Kleine-König
Cc: linux-kernel, akpm, Ming Lei, Henrique de Moraes Holschuh,
Greg Kroah-Hartman, David Brownell, linux-mips
On Tue, Nov 24, 2009 at 10:07:01PM +0100, Uwe Kleine-König wrote:
> The function iodev_remove is used only wrapped by __devexit_p so define
> it using __devexit.
Thanks, queued for 2.6.33.
Ralf
^ permalink raw reply [flat|nested] 71+ messages in thread
* Re: [PATCH 02/38] move atp870u_remove to .devexit.text
2009-11-24 21:06 ` Uwe Kleine-König
(?)
(?)
@ 2009-11-24 21:38 ` James Bottomley
2009-11-25 9:26 ` Uwe Kleine-König
2009-11-25 13:38 ` Bartlomiej Zolnierkiewicz
-1 siblings, 2 replies; 71+ messages in thread
From: James Bottomley @ 2009-11-24 21:38 UTC (permalink / raw)
To: Uwe Kleine-König
Cc: linux-kernel, akpm, Yang Hongyang, Alan Cox, linux-scsi, Alan Cox
On Tue, 2009-11-24 at 22:06 +0100, Uwe Kleine-König wrote:
> The function atp870u_remove is used only wrapped by __devexit_p so define
> it using __devexit.
But there's really no point to this. HOTPLUG is always defined on SCSI
systems that have these drivers, which means that _devinit/exit are
nops. That makes the change purely cosmetic and not worth churning two
dozen drivers for.
Even for the EMBEDDED cases that should care about this, the maintainers
have indicated that the memory savings simply aren't worth the hassle of
tracking the sectional updates.
James
^ permalink raw reply [flat|nested] 71+ messages in thread
* Re: [PATCH 02/38] move atp870u_remove to .devexit.text
2009-11-24 21:38 ` [PATCH 02/38] move atp870u_remove " James Bottomley
@ 2009-11-25 9:26 ` Uwe Kleine-König
2009-11-25 13:38 ` Bartlomiej Zolnierkiewicz
1 sibling, 0 replies; 71+ messages in thread
From: Uwe Kleine-König @ 2009-11-25 9:26 UTC (permalink / raw)
To: James Bottomley
Cc: linux-kernel, akpm, Yang Hongyang, Alan Cox, linux-scsi, Alan Cox
On Tue, Nov 24, 2009 at 03:38:16PM -0600, James Bottomley wrote:
> On Tue, 2009-11-24 at 22:06 +0100, Uwe Kleine-König wrote:
> > The function atp870u_remove is used only wrapped by __devexit_p so define
> > it using __devexit.
>
> But there's really no point to this. HOTPLUG is always defined on SCSI
> systems that have these drivers, which means that _devinit/exit are
> nops. That makes the change purely cosmetic and not worth churning two
> dozen drivers for.
>
> Even for the EMBEDDED cases that should care about this, the maintainers
> have indicated that the memory savings simply aren't worth the hassle of
> tracking the sectional updates.
I think there are people that care. Anyhow, then the best thing you can
do is something like
find drivers/scsi -type f -print0 | xargs perl -p -i -e 's/\b__(dev)?exit(_p)?\b//'
Then my scripts will drop the scsi related patches.
Best regards
Uwe
--
Pengutronix e.K. | Uwe Kleine-König |
Industrial Linux Solutions | http://www.pengutronix.de/ |
^ permalink raw reply [flat|nested] 71+ messages in thread
* Re: [PATCH 02/38] move atp870u_remove to .devexit.text
2009-11-24 21:38 ` [PATCH 02/38] move atp870u_remove " James Bottomley
2009-11-25 9:26 ` Uwe Kleine-König
@ 2009-11-25 13:38 ` Bartlomiej Zolnierkiewicz
1 sibling, 0 replies; 71+ messages in thread
From: Bartlomiej Zolnierkiewicz @ 2009-11-25 13:38 UTC (permalink / raw)
To: James Bottomley
Cc: Uwe Kleine-König, linux-kernel, akpm, Yang Hongyang,
Alan Cox, linux-scsi, Alan Cox
On Tuesday 24 November 2009 10:38:16 pm James Bottomley wrote:
> On Tue, 2009-11-24 at 22:06 +0100, Uwe Kleine-König wrote:
> > The function atp870u_remove is used only wrapped by __devexit_p so define
> > it using __devexit.
>
> But there's really no point to this. HOTPLUG is always defined on SCSI
> systems that have these drivers, which means that _devinit/exit are
> nops. That makes the change purely cosmetic and not worth churning two
> dozen drivers for.
Looking at things from a bit different angle:
These tags still have some value as a documentation and help
in maintaining some level of the coherency between different
parts of a kernel (which is a Good Thing).
--
Bartlomiej Zolnierkiewicz
^ permalink raw reply [flat|nested] 71+ messages in thread
* Re: [PATCH 01/38] move asic3_remove to .devexit.text
2009-11-24 21:06 [PATCH 01/38] move asic3_remove to .devexit.text Uwe Kleine-König
2009-11-24 21:06 ` Uwe Kleine-König
@ 2009-11-24 23:24 ` Samuel Ortiz
1 sibling, 0 replies; 71+ messages in thread
From: Samuel Ortiz @ 2009-11-24 23:24 UTC (permalink / raw)
To: Uwe Kleine-König
Cc: linux-kernel, akpm, Philipp Zabel, Yinghai Lu, Russell King
Hi Uwe,
On Tue, Nov 24, 2009 at 10:06:56PM +0100, Uwe Kleine-König wrote:
> The function asic3_remove is used only wrapped by __devexit_p so define
> it using __devexit.
This one was already applied to my for-next branch.
Cheers,
Samuel.
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> Acked-by: Sam Ravnborg <sam@ravnborg.org>
> Cc: Samuel Ortiz <sameo@linux.intel.com>
> Cc: Philipp Zabel <philipp.zabel@gmail.com>
> Cc: Yinghai Lu <yhlu.kernel@gmail.com>
> Cc: Russell King <rmk+kernel@arm.linux.org.uk>
> Cc: linux-kernel@vger.kernel.org
> ---
> drivers/mfd/asic3.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/mfd/asic3.c b/drivers/mfd/asic3.c
> index 63a2a66..e22128c 100644
> --- a/drivers/mfd/asic3.c
> +++ b/drivers/mfd/asic3.c
> @@ -908,7 +908,7 @@ static int __init asic3_probe(struct platform_device *pdev)
> return ret;
> }
>
> -static int asic3_remove(struct platform_device *pdev)
> +static int __devexit asic3_remove(struct platform_device *pdev)
> {
> int ret;
> struct asic3 *asic = platform_get_drvdata(pdev);
> --
> 1.6.5.2
>
--
Intel Open Source Technology Centre
http://oss.intel.com/
^ permalink raw reply [flat|nested] 71+ messages in thread
end of thread, other threads:[~2009-12-03 22:10 UTC | newest]
Thread overview: 71+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-24 21:06 [PATCH 01/38] move asic3_remove to .devexit.text Uwe Kleine-König
2009-11-24 21:06 ` [PATCH 02/38] move atp870u_remove " Uwe Kleine-König
2009-11-24 21:06 ` Uwe Kleine-König
2009-11-24 21:06 ` [PATCH 03/38] move excite_nand_remove " Uwe Kleine-König
2009-11-24 21:06 ` Uwe Kleine-König
2009-11-24 21:06 ` [PATCH 04/38] move ilo_remove " Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 05/38] move initio_remove_one " Uwe Kleine-König
2009-11-24 21:07 ` Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 06/38] move iodev_remove " Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 07/38] move lasi700_driver_remove " Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 08/38] move mcf_remove " Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 09/38] move megaraid_detach_one " Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 10/38] don't wrap mlx4_remove_one in __devexit_p Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 11/38] move mpc85xx_pci_err_remove to .devexit.text Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 12/38] move mv64x60_pci_err_remove " Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 13/38] don't use __exit_p to wrap mxcnd_remove Uwe Kleine-König
2009-11-24 21:07 ` Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 14/38] move NCR_Q720_remove to .devexit.text Uwe Kleine-König
2009-11-24 21:07 ` Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 15/38] move s3c_adc_remove " Uwe Kleine-König
2009-11-24 21:07 ` Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 16/38] move s3c_pwm_remove " Uwe Kleine-König
2009-11-24 21:07 ` Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 17/38] move sc26xx_driver_remove " Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 18/38] move sgiwd93_remove " Uwe Kleine-König
2009-11-24 21:07 ` Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 19/38] move snirm710_driver_remove " Uwe Kleine-König
[not found] ` <1259096853-18909-19-git-send-email-u.kleine-koenig-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2009-11-24 21:07 ` [PATCH 20/38] move spidev_remove " Uwe Kleine-König
2009-11-24 21:07 ` Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 21/38] move stex_remove " Uwe Kleine-König
2009-11-24 21:07 ` Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 22/38] move vhci_hcd_remove " Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 23/38] move zalon_remove " Uwe Kleine-König
2009-11-24 21:07 ` Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 24/38] move lis3l02dq_remove " Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 25/38] move sca3000_remove " Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 26/38] move vlynq_remove " Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 27/38] move bfad_pci_remove " Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 28/38] don't use __exit_p to wrap ds1302_rtc_remove Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 29/38] move mc33880_remove to .devexit.text Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 30/38] move mipid_spi_remove " Uwe Kleine-König
2009-11-24 21:07 ` Uwe Kleine-König
2009-11-24 21:07 ` Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 31/38] move pcf2123_remove " Uwe Kleine-König
[not found] ` <1259096853-18909-31-git-send-email-u.kleine-koenig-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2009-11-24 21:07 ` [PATCH 32/38] don't use __exit_p to wrap plat_mpc8xxx_spi_remove Uwe Kleine-König
2009-11-24 21:07 ` Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 33/38] don't use __exit_p to wrap sh_mobile_ceu_remove Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 34/38] move vpfe_remove to .devexit.text Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 35/38] move vpif_remove " Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 36/38] move vpss_remove " Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 37/38] don't use __devexit_p to wrap sci_remove Uwe Kleine-König
2009-11-24 21:07 ` [PATCH 38/38] don't use __exit_p to wrap composite_unbind Uwe Kleine-König
[not found] ` <1259096853-18909-32-git-send-email-u.kleine-koenig-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2009-11-24 21:42 ` [PATCH 32/38] don't use __exit_p to wrap plat_mpc8xxx_spi_remove Grant Likely
2009-11-24 21:42 ` Grant Likely
2009-11-26 8:23 ` [PATCH 29/38] move mc33880_remove to .devexit.text Richard Röjfors
2009-11-25 1:36 ` [PATCH 28/38] don't use __exit_p to wrap ds1302_rtc_remove Paul Mundt
2009-11-24 21:22 ` [PATCH 20/38] move spidev_remove to .devexit.text Mike Frysinger
2009-11-25 8:02 ` [PATCH 16/38] move s3c_pwm_remove " Peter Korsgaard
2009-11-25 8:02 ` Peter Korsgaard
2009-12-03 22:07 ` [PATCH 15/38] move s3c_adc_remove " Ben Dooks
2009-12-03 22:07 ` Ben Dooks
2009-12-03 22:10 ` Uwe Kleine-König
2009-12-03 22:10 ` Uwe Kleine-König
2009-11-25 9:19 ` [PATCH 10/38] don't wrap mlx4_remove_one in __devexit_p Franco Fichtner
2009-11-25 9:23 ` [PATCH] " Uwe Kleine-König
2009-11-25 1:22 ` [PATCH 08/38] move mcf_remove to .devexit.text Greg Ungerer
2009-11-27 8:16 ` [PATCH 06/38] move iodev_remove " Ralf Baechle
2009-11-24 21:38 ` [PATCH 02/38] move atp870u_remove " James Bottomley
2009-11-25 9:26 ` Uwe Kleine-König
2009-11-25 13:38 ` Bartlomiej Zolnierkiewicz
2009-11-24 23:24 ` [PATCH 01/38] move asic3_remove " Samuel Ortiz
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.