linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] dma: Remove erroneous __exit and __exit_p() references
@ 2013-02-20  0:07 maxin.john at gmail.com
  2013-02-22 18:29 ` Linus Walleij
  0 siblings, 1 reply; 6+ messages in thread
From: maxin.john at gmail.com @ 2013-02-20  0:07 UTC (permalink / raw)
  To: linux-arm-kernel

From: "Maxin B. John" <maxin.john@enea.com>

Removing the annotation with __exit and referencing with __exit_p()
present in dma driver module remove hooks.

Part of the __devexit and __devexit_p() purge.

Signed-off-by: Maxin B. John <maxin.john@enea.com>
---
 drivers/dma/at_hdmac.c      |    4 ++--
 drivers/dma/coh901318.c     |    4 ++--
 drivers/dma/imx-dma.c       |    4 ++--
 drivers/dma/imx-sdma.c      |    4 ++--
 drivers/dma/ipu/ipu_idmac.c |    4 ++--
 drivers/dma/txx9dmac.c      |    8 ++++----
 6 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/drivers/dma/at_hdmac.c b/drivers/dma/at_hdmac.c
index 13a02f4..1dc7fac 100644
--- a/drivers/dma/at_hdmac.c
+++ b/drivers/dma/at_hdmac.c
@@ -1407,7 +1407,7 @@ err_kfree:
 	return err;
 }
 
-static int __exit at_dma_remove(struct platform_device *pdev)
+static int at_dma_remove(struct platform_device *pdev)
 {
 	struct at_dma		*atdma = platform_get_drvdata(pdev);
 	struct dma_chan		*chan, *_chan;
@@ -1565,7 +1565,7 @@ static const struct dev_pm_ops at_dma_dev_pm_ops = {
 };
 
 static struct platform_driver at_dma_driver = {
-	.remove		= __exit_p(at_dma_remove),
+	.remove		= at_dma_remove,
 	.shutdown	= at_dma_shutdown,
 	.id_table	= atdma_devtypes,
 	.driver = {
diff --git a/drivers/dma/coh901318.c b/drivers/dma/coh901318.c
index aa384e5..0b8b3c8 100644
--- a/drivers/dma/coh901318.c
+++ b/drivers/dma/coh901318.c
@@ -1544,7 +1544,7 @@ static int __init coh901318_probe(struct platform_device *pdev)
 	return err;
 }
 
-static int __exit coh901318_remove(struct platform_device *pdev)
+static int coh901318_remove(struct platform_device *pdev)
 {
 	struct coh901318_base *base = platform_get_drvdata(pdev);
 
@@ -1556,7 +1556,7 @@ static int __exit coh901318_remove(struct platform_device *pdev)
 
 
 static struct platform_driver coh901318_driver = {
-	.remove = __exit_p(coh901318_remove),
+	.remove = coh901318_remove,
 	.driver = {
 		.name	= "coh901318",
 	},
diff --git a/drivers/dma/imx-dma.c b/drivers/dma/imx-dma.c
index a7dcf78..bbf6d7f 100644
--- a/drivers/dma/imx-dma.c
+++ b/drivers/dma/imx-dma.c
@@ -1144,7 +1144,7 @@ err:
 	return ret;
 }
 
-static int __exit imxdma_remove(struct platform_device *pdev)
+static int imxdma_remove(struct platform_device *pdev)
 {
 	struct imxdma_engine *imxdma = platform_get_drvdata(pdev);
 
@@ -1161,7 +1161,7 @@ static struct platform_driver imxdma_driver = {
 		.name	= "imx-dma",
 	},
 	.id_table	= imx_dma_devtype,
-	.remove		= __exit_p(imxdma_remove),
+	.remove		= imxdma_remove,
 };
 
 static int __init imxdma_module_init(void)
diff --git a/drivers/dma/imx-sdma.c b/drivers/dma/imx-sdma.c
index f082aa3..092867b 100644
--- a/drivers/dma/imx-sdma.c
+++ b/drivers/dma/imx-sdma.c
@@ -1462,7 +1462,7 @@ err_irq:
 	return ret;
 }
 
-static int __exit sdma_remove(struct platform_device *pdev)
+static int sdma_remove(struct platform_device *pdev)
 {
 	return -EBUSY;
 }
@@ -1473,7 +1473,7 @@ static struct platform_driver sdma_driver = {
 		.of_match_table = sdma_dt_ids,
 	},
 	.id_table	= sdma_devtypes,
-	.remove		= __exit_p(sdma_remove),
+	.remove		= sdma_remove,
 };
 
 static int __init sdma_module_init(void)
diff --git a/drivers/dma/ipu/ipu_idmac.c b/drivers/dma/ipu/ipu_idmac.c
index 6585537..d79717c 100644
--- a/drivers/dma/ipu/ipu_idmac.c
+++ b/drivers/dma/ipu/ipu_idmac.c
@@ -1756,7 +1756,7 @@ err_noirq:
 	return ret;
 }
 
-static int __exit ipu_remove(struct platform_device *pdev)
+static int ipu_remove(struct platform_device *pdev)
 {
 	struct ipu *ipu = platform_get_drvdata(pdev);
 
@@ -1781,7 +1781,7 @@ static struct platform_driver ipu_platform_driver = {
 		.name	= "ipu-core",
 		.owner	= THIS_MODULE,
 	},
-	.remove		= __exit_p(ipu_remove),
+	.remove		= ipu_remove,
 };
 
 static int __init ipu_init(void)
diff --git a/drivers/dma/txx9dmac.c b/drivers/dma/txx9dmac.c
index 913f55c..a59fb48 100644
--- a/drivers/dma/txx9dmac.c
+++ b/drivers/dma/txx9dmac.c
@@ -1190,7 +1190,7 @@ static int __init txx9dmac_chan_probe(struct platform_device *pdev)
 	return 0;
 }
 
-static int __exit txx9dmac_chan_remove(struct platform_device *pdev)
+static int txx9dmac_chan_remove(struct platform_device *pdev)
 {
 	struct txx9dmac_chan *dc = platform_get_drvdata(pdev);
 
@@ -1252,7 +1252,7 @@ static int __init txx9dmac_probe(struct platform_device *pdev)
 	return 0;
 }
 
-static int __exit txx9dmac_remove(struct platform_device *pdev)
+static int txx9dmac_remove(struct platform_device *pdev)
 {
 	struct txx9dmac_dev *ddev = platform_get_drvdata(pdev);
 
@@ -1299,14 +1299,14 @@ static const struct dev_pm_ops txx9dmac_dev_pm_ops = {
 };
 
 static struct platform_driver txx9dmac_chan_driver = {
-	.remove		= __exit_p(txx9dmac_chan_remove),
+	.remove		= txx9dmac_chan_remove,
 	.driver = {
 		.name	= "txx9dmac-chan",
 	},
 };
 
 static struct platform_driver txx9dmac_driver = {
-	.remove		= __exit_p(txx9dmac_remove),
+	.remove		= txx9dmac_remove,
 	.shutdown	= txx9dmac_shutdown,
 	.driver = {
 		.name	= "txx9dmac",
-- 
1.7.7

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH] dma: Remove erroneous __exit and __exit_p() references
  2013-02-20  0:07 [PATCH] dma: Remove erroneous __exit and __exit_p() references maxin.john at gmail.com
@ 2013-02-22 18:29 ` Linus Walleij
  2013-03-07  9:17   ` Maxin B. John
  0 siblings, 1 reply; 6+ messages in thread
From: Linus Walleij @ 2013-02-22 18:29 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Feb 20, 2013 at 1:07 AM,  <maxin.john@gmail.com> wrote:

> From: "Maxin B. John" <maxin.john@enea.com>
>
> Removing the annotation with __exit and referencing with __exit_p()
> present in dma driver module remove hooks.
>
> Part of the __devexit and __devexit_p() purge.
>
> Signed-off-by: Maxin B. John <maxin.john@enea.com>

Acked-by: Linus Walleij <linus.walleij@linaro.org>

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH] dma: Remove erroneous __exit and __exit_p() references
  2013-02-22 18:29 ` Linus Walleij
@ 2013-03-07  9:17   ` Maxin B. John
  2013-03-07  9:47     ` Vinod Koul
  0 siblings, 1 reply; 6+ messages in thread
From: Maxin B. John @ 2013-03-07  9:17 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

On Fri, Feb 22, 2013 at 7:29 PM, Linus Walleij <linus.walleij@linaro.org> wrote:
> On Wed, Feb 20, 2013 at 1:07 AM,  <maxin.john@gmail.com> wrote:
>
>> From: "Maxin B. John" <maxin.john@enea.com>
>>
>> Removing the annotation with __exit and referencing with __exit_p()
>> present in dma driver module remove hooks.
>>
>> Part of the __devexit and __devexit_p() purge.
>>
>> Signed-off-by: Maxin B. John <maxin.john@enea.com>
>
> Acked-by: Linus Walleij <linus.walleij@linaro.org>

Gentle ping...

> Yours,
> Linus Walleij

Regards,
Maxin

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH] dma: Remove erroneous __exit and __exit_p() references
  2013-03-07  9:17   ` Maxin B. John
@ 2013-03-07  9:47     ` Vinod Koul
  2013-03-07 10:31       ` Maxin B. John
  2013-03-07 10:38       ` Vinod Koul
  0 siblings, 2 replies; 6+ messages in thread
From: Vinod Koul @ 2013-03-07  9:47 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Mar 07, 2013 at 10:17:40AM +0100, Maxin B. John wrote:
> Hi,
> 
> On Fri, Feb 22, 2013 at 7:29 PM, Linus Walleij <linus.walleij@linaro.org> wrote:
> > On Wed, Feb 20, 2013 at 1:07 AM,  <maxin.john@gmail.com> wrote:
> >
> >> From: "Maxin B. John" <maxin.john@enea.com>
> >>
> >> Removing the annotation with __exit and referencing with __exit_p()
> >> present in dma driver module remove hooks.
> >>
> >> Part of the __devexit and __devexit_p() purge.
> >>
> >> Signed-off-by: Maxin B. John <maxin.john@enea.com>
> >
> > Acked-by: Linus Walleij <linus.walleij@linaro.org>
> 
> Gentle ping...
???

Its already in my -next

--
~Vinod

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH] dma: Remove erroneous __exit and __exit_p() references
  2013-03-07  9:47     ` Vinod Koul
@ 2013-03-07 10:31       ` Maxin B. John
  2013-03-07 10:38       ` Vinod Koul
  1 sibling, 0 replies; 6+ messages in thread
From: Maxin B. John @ 2013-03-07 10:31 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Vinod,

On Thu, Mar 7, 2013 at 10:47 AM, Vinod Koul <vinod.koul@intel.com> wrote:
> On Thu, Mar 07, 2013 at 10:17:40AM +0100, Maxin B. John wrote:
>> Hi,
>>
>> On Fri, Feb 22, 2013 at 7:29 PM, Linus Walleij <linus.walleij@linaro.org> wrote:
>> > On Wed, Feb 20, 2013 at 1:07 AM,  <maxin.john@gmail.com> wrote:
>> >
>> >> From: "Maxin B. John" <maxin.john@enea.com>
>> >>
>> >> Removing the annotation with __exit and referencing with __exit_p()
>> >> present in dma driver module remove hooks.
>> >>
>> >> Part of the __devexit and __devexit_p() purge.
>> >>
>> >> Signed-off-by: Maxin B. John <maxin.john@enea.com>
>> >
>> > Acked-by: Linus Walleij <linus.walleij@linaro.org>
>>
>> Gentle ping...
> ???
>
> Its already in my -next
In that case, sorry for creating confusion. I was under the impression
that only the patch titled "dma: timb_dma: Fix compiler warning" was
accepted in "-next".

> ~Vinod
Warm Regards,
Maxin

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH] dma: Remove erroneous __exit and __exit_p() references
  2013-03-07  9:47     ` Vinod Koul
  2013-03-07 10:31       ` Maxin B. John
@ 2013-03-07 10:38       ` Vinod Koul
  1 sibling, 0 replies; 6+ messages in thread
From: Vinod Koul @ 2013-03-07 10:38 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Mar 07, 2013 at 03:17:35PM +0530, Vinod Koul wrote:
> On Thu, Mar 07, 2013 at 10:17:40AM +0100, Maxin B. John wrote:
> > Hi,
> > 
> > On Fri, Feb 22, 2013 at 7:29 PM, Linus Walleij <linus.walleij@linaro.org> wrote:
> > > On Wed, Feb 20, 2013 at 1:07 AM,  <maxin.john@gmail.com> wrote:
> > >
> > >> From: "Maxin B. John" <maxin.john@enea.com>
> > >>
> > >> Removing the annotation with __exit and referencing with __exit_p()
> > >> present in dma driver module remove hooks.
> > >>
> > >> Part of the __devexit and __devexit_p() purge.
> > >>
> > >> Signed-off-by: Maxin B. John <maxin.john@enea.com>
> > >
> > > Acked-by: Linus Walleij <linus.walleij@linaro.org>
> > 
> > Gentle ping...
> ???
> 
> Its already in my -next
Sorry, I have confused with your other patch, applying now...

> 
> --
> ~Vinod

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-03-07 10:38 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-20  0:07 [PATCH] dma: Remove erroneous __exit and __exit_p() references maxin.john at gmail.com
2013-02-22 18:29 ` Linus Walleij
2013-03-07  9:17   ` Maxin B. John
2013-03-07  9:47     ` Vinod Koul
2013-03-07 10:31       ` Maxin B. John
2013-03-07 10:38       ` Vinod Koul

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).