projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c1174c0
)
mei: remove use of __devexit_p
author
Bill Pemberton
<wfp5p@virginia.edu>
Mon, 19 Nov 2012 18:20:25 +0000
(13:20 -0500)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Wed, 21 Nov 2012 20:43:58 +0000
(12:43 -0800)
CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer
needed.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Cc: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/mei/main.c
patch
|
blob
|
history
diff --git
a/drivers/misc/mei/main.c
b/drivers/misc/mei/main.c
index 7c9c381e5c9affc4740fe403916ef44fbd0e64ed..f432b8d7e19bb0ee1ce6e9f4f9e6bcba9ec1b728 100644
(file)
--- a/
drivers/misc/mei/main.c
+++ b/
drivers/misc/mei/main.c
@@
-1023,8
+1023,8
@@
static struct pci_driver mei_driver = {
.name = KBUILD_MODNAME,
.id_table = mei_pci_tbl,
.probe = mei_probe,
- .remove =
__devexit_p(mei_remove)
,
- .shutdown =
__devexit_p(mei_remove)
,
+ .remove =
mei_remove
,
+ .shutdown =
mei_remove
,
.driver.pm = MEI_PM_OPS,
};