CONFIG_HOTPLUG is going away as an option so __devexit is no longer needed.
Signed-off-by: Bill Pemberton <[email protected]> Cc: Mauro Carvalho Chehab <[email protected]> Cc: [email protected] Cc: [email protected] --- drivers/staging/media/solo6x10/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/media/solo6x10/core.c b/drivers/staging/media/solo6x10/core.c index c0319e6..fd83d6d 100644 --- a/drivers/staging/media/solo6x10/core.c +++ b/drivers/staging/media/solo6x10/core.c @@ -284,7 +284,7 @@ fail_probe: return ret; } -static void __devexit solo_pci_remove(struct pci_dev *pdev) +static void solo_pci_remove(struct pci_dev *pdev) { struct solo_dev *solo_dev = pci_get_drvdata(pdev); -- 1.8.0 _______________________________________________ devel mailing list [email protected] http://driverdev.linuxdriverproject.org/mailman/listinfo/devel
