diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-12-21 15:55:26 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-03 18:57:01 -0500 |
commit | 10532fe7623dd63ef915be272247ec13f79afbb8 (patch) | |
tree | d7103ab32aa50650681aa2e6f638bcdff2f092b3 /drivers/w1/masters | |
parent | d1c3ed669a2d452cacfb48c2d171a1f364dae2ed (diff) |
Drivers: w1: remove last __devexit_p() instance
This slipped in through the merging of different trees. Remove
__devexit_p() use in the mxc_w1 driver.
Cc: Evgeniy Polyakov <zbr@ioremap.net>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
Cc: Bill Pemberton <wfp5p@virginia.edu>
Cc: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/w1/masters')
-rw-r--r-- | drivers/w1/masters/mxc_w1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/w1/masters/mxc_w1.c b/drivers/w1/masters/mxc_w1.c index d338b56ea2f0..708a25fc9961 100644 --- a/drivers/w1/masters/mxc_w1.c +++ b/drivers/w1/masters/mxc_w1.c | |||
@@ -191,7 +191,7 @@ static struct platform_driver mxc_w1_driver = { | |||
191 | .name = "mxc_w1", | 191 | .name = "mxc_w1", |
192 | }, | 192 | }, |
193 | .probe = mxc_w1_probe, | 193 | .probe = mxc_w1_probe, |
194 | .remove = __devexit_p(mxc_w1_remove), | 194 | .remove = mxc_w1_remove, |
195 | }; | 195 | }; |
196 | module_platform_driver(mxc_w1_driver); | 196 | module_platform_driver(mxc_w1_driver); |
197 | 197 | ||