diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:21:52 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-21 15:05:00 -0800 |
commit | 89f6883c70245323215b9e5786964621e4484382 (patch) | |
tree | 1310ee73f02937d0178ff976d7df737fd4c07dca /drivers | |
parent | 3cf36aa9951828a6c164f3b3e12d4653af8ba69f (diff) | |
download | lwn-89f6883c70245323215b9e5786964621e4484382.tar.gz lwn-89f6883c70245323215b9e5786964621e4484382.zip |
staging: xgifb: remove use of __devinit
CONFIG_HOTPLUG is going away as an option so __devinit 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')
-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 e9fe27debf7b..044374e3ac98 100644 --- a/drivers/staging/xgifb/XGI_main_26.c +++ b/drivers/staging/xgifb/XGI_main_26.c @@ -1695,7 +1695,7 @@ static int __init XGIfb_setup(char *options) return 0; } -static int __devinit xgifb_probe(struct pci_dev *pdev, +static int xgifb_probe(struct pci_dev *pdev, const struct pci_device_id *ent) { u8 reg, reg1; |