diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 22:21:04 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-22 03:05:00 +0400 |
commit | 2c4ae9d21867ec2b771085898682ab3db46341c0 (patch) | |
tree | 1767ce96e74815b42decdc91f85aae02c74597a6 /drivers/staging/xgifb | |
parent | 38930755b86082b8d44da038d0ec0b912a708679 (diff) | |
download | linux-2c4ae9d21867ec2b771085898682ab3db46341c0.tar.xz |
staging: xgifb: 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>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/xgifb')
-rw-r--r-- | drivers/staging/xgifb/XGI_main_26.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/xgifb/XGI_main_26.c b/drivers/staging/xgifb/XGI_main_26.c index 4b213a318f34..e9fe27debf7b 100644 --- a/drivers/staging/xgifb/XGI_main_26.c +++ b/drivers/staging/xgifb/XGI_main_26.c @@ -2127,7 +2127,7 @@ static struct pci_driver xgifb_driver = { .name = "xgifb", .id_table = xgifb_pci_table, .probe = xgifb_probe, - .remove = __devexit_p(xgifb_remove) + .remove = xgifb_remove }; |