diff options
| author | Bill Pemberton <[email protected]> | 2012-11-19 13:22:16 -0500 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2012-11-21 15:09:57 -0800 |
| commit | ffba1bc963ca5efe05836232bcf2d44916f0e3e9 (patch) | |
| tree | 123246276e6612d00722df6a26f110d6534ec8d3 | |
| parent | fd8413a2b8328801133e95b58d751bfe48b34303 (diff) | |
staging: solo6x10: remove use of __devinit
CONFIG_HOTPLUG is going away as an option so __devinit is no longer
needed.
Signed-off-by: Bill Pemberton <[email protected]>
Cc: Mauro Carvalho Chehab <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/staging/media/solo6x10/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/media/solo6x10/core.c b/drivers/staging/media/solo6x10/core.c index 3ee9b125797f..c0319e6a3806 100644 --- a/drivers/staging/media/solo6x10/core.c +++ b/drivers/staging/media/solo6x10/core.c @@ -129,7 +129,7 @@ static void free_solo_dev(struct solo_dev *solo_dev) kfree(solo_dev); } -static int __devinit solo_pci_probe(struct pci_dev *pdev, +static int solo_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id) { struct solo_dev *solo_dev; |