Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

+1 -1
+1 -1
drivers/w1/masters/mxc_w1.c
··· 191 191 .name = "mxc_w1", 192 192 }, 193 193 .probe = mxc_w1_probe, 194 - .remove = __devexit_p(mxc_w1_remove), 194 + .remove = mxc_w1_remove, 195 195 }; 196 196 module_platform_driver(mxc_w1_driver); 197 197