aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/w1
diff options
context:
space:
mode:
authorFelipe Balbi <balbi@ti.com>2012-07-25 08:05:27 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-08-16 12:58:43 -0400
commit8c3db42fea94cc360446602d3d1a4f50ae98af16 (patch)
treef1a0b093b0b1a60b825ab14ce8fb62a6608032de /drivers/w1
parent09649a85adfedde99b47b6ccef3fea696fad72be (diff)
w1: omap-hdq: add section annotation to remove
trivial patch, no functional changes. Signed-off-by: Felipe Balbi <balbi@ti.com> Acked-by: Evgeniy Polyakov <zbr@ioremap.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/w1')
-rw-r--r--drivers/w1/masters/omap_hdq.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/w1/masters/omap_hdq.c b/drivers/w1/masters/omap_hdq.c
index 4b0fcf3c2d03..38b0138ce74d 100644
--- a/drivers/w1/masters/omap_hdq.c
+++ b/drivers/w1/masters/omap_hdq.c
@@ -73,11 +73,11 @@ struct hdq_data {
73}; 73};
74 74
75static int __devinit omap_hdq_probe(struct platform_device *pdev); 75static int __devinit omap_hdq_probe(struct platform_device *pdev);
76static int omap_hdq_remove(struct platform_device *pdev); 76static int __devexit omap_hdq_remove(struct platform_device *pdev);
77 77
78static struct platform_driver omap_hdq_driver = { 78static struct platform_driver omap_hdq_driver = {
79 .probe = omap_hdq_probe, 79 .probe = omap_hdq_probe,
80 .remove = omap_hdq_remove, 80 .remove = __devexit_p(omap_hdq_remove),
81 .driver = { 81 .driver = {
82 .name = "omap_hdq", 82 .name = "omap_hdq",
83 }, 83 },
@@ -628,7 +628,7 @@ err_kmalloc:
628 628
629} 629}
630 630
631static int omap_hdq_remove(struct platform_device *pdev) 631static int __devexit omap_hdq_remove(struct platform_device *pdev)
632{ 632{
633 struct hdq_data *hdq_data = platform_get_drvdata(pdev); 633 struct hdq_data *hdq_data = platform_get_drvdata(pdev);
634 634