dect
/
linux-2.6
Archived
13
0
Fork 0

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>
This commit is contained in:
Greg Kroah-Hartman 2012-12-21 12:55:26 -08:00
parent d1c3ed669a
commit 10532fe762
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ static struct platform_driver mxc_w1_driver = {
.name = "mxc_w1",
},
.probe = mxc_w1_probe,
.remove = __devexit_p(mxc_w1_remove),
.remove = mxc_w1_remove,
};
module_platform_driver(mxc_w1_driver);