summaryrefslogtreecommitdiffstats
path: root/drivers/w1/masters/omap_hdq.c
diff options
context:
space:
mode:
authorBill Pemberton2012-11-19 19:21:14 +0100
committerGreg Kroah-Hartman2012-11-21 21:42:25 +0100
commitf91a66c97b38a504827803bb93f83a7b85e50e5a (patch)
tree277796611c5378ddb6e5dc48169c589ccb138df6 /drivers/w1/masters/omap_hdq.c
parentw1: mxc_w1: Fix comment (diff)
downloadkernel-qcow2-linux-f91a66c97b38a504827803bb93f83a7b85e50e5a.tar.gz
kernel-qcow2-linux-f91a66c97b38a504827803bb93f83a7b85e50e5a.tar.xz
kernel-qcow2-linux-f91a66c97b38a504827803bb93f83a7b85e50e5a.zip
w1: remove use of __devexit_p
CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer needed. Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Cc: Evgeniy Polyakov <zbr@ioremap.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/w1/masters/omap_hdq.c')
-rw-r--r--drivers/w1/masters/omap_hdq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/w1/masters/omap_hdq.c b/drivers/w1/masters/omap_hdq.c
index ca8e60bb2f9c..652ca7f207e3 100644
--- a/drivers/w1/masters/omap_hdq.c
+++ b/drivers/w1/masters/omap_hdq.c
@@ -74,7 +74,7 @@ static int __devexit omap_hdq_remove(struct platform_device *pdev);
static struct platform_driver omap_hdq_driver = {
.probe = omap_hdq_probe,
- .remove = __devexit_p(omap_hdq_remove),
+ .remove = omap_hdq_remove,
.driver = {
.name = "omap_hdq",
},