diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:22:03 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-21 15:05:01 -0800 |
commit | df1f35ebffc3739e43b96d1df689c2ecabf09552 (patch) | |
tree | a19205149e9c9500ac7ec4ed340d2103d88073e3 /drivers/staging/sep | |
parent | a0c2feb18035dfe90bac813504bf1030d54b68f0 (diff) | |
download | talos-obmc-linux-df1f35ebffc3739e43b96d1df689c2ecabf09552.tar.gz talos-obmc-linux-df1f35ebffc3739e43b96d1df689c2ecabf09552.zip |
staging: sep: 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/staging/sep')
-rw-r--r-- | drivers/staging/sep/sep_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/sep/sep_main.c b/drivers/staging/sep/sep_main.c index 2c8df0e6b6d0..15c6e3d9437c 100644 --- a/drivers/staging/sep/sep_main.c +++ b/drivers/staging/sep/sep_main.c @@ -4112,7 +4112,7 @@ static int sep_register_driver_with_fs(struct sep_device *sep) *Attempt to set up and configure a SEP device that has been *discovered by the PCI layer. Allocates all required resources. */ -static int __devinit sep_probe(struct pci_dev *pdev, +static int sep_probe(struct pci_dev *pdev, const struct pci_device_id *ent) { int error = 0; |