diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:21:03 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-21 15:05:00 -0800 |
commit | 38930755b86082b8d44da038d0ec0b912a708679 (patch) | |
tree | 87e6d142141c81413491e4fd2d24327726d14e67 | |
parent | f307da94dbc5308ec4163030785e79cf193b5cf7 (diff) |
staging: vme: 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: Martyn Welch <martyn.welch@ge.com>
Cc: Manohar Vanga <manohar.vanga@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/vme/devices/vme_pio2_core.c | 2 | ||||
-rw-r--r-- | drivers/staging/vme/devices/vme_user.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/vme/devices/vme_pio2_core.c b/drivers/staging/vme/devices/vme_pio2_core.c index dad8281915bf..35c5a147849f 100644 --- a/drivers/staging/vme/devices/vme_pio2_core.c +++ b/drivers/staging/vme/devices/vme_pio2_core.c @@ -156,7 +156,7 @@ static struct vme_driver pio2_driver = { .name = driver_name, .match = pio2_match, .probe = pio2_probe, - .remove = __devexit_p(pio2_remove), + .remove = pio2_remove, }; diff --git a/drivers/staging/vme/devices/vme_user.c b/drivers/staging/vme/devices/vme_user.c index e3731eb2bab1..8209c2d3c151 100644 --- a/drivers/staging/vme/devices/vme_user.c +++ b/drivers/staging/vme/devices/vme_user.c @@ -619,7 +619,7 @@ static struct vme_driver vme_user_driver = { .name = driver_name, .match = vme_user_match, .probe = vme_user_probe, - .remove = __devexit_p(vme_user_remove), + .remove = vme_user_remove, }; |