Staging: sxg: Add missing __devexit_p()

The remove function uses __devexit, so the .remove assignment needs
__devexit_p() to fix a build error with hotplug disabled.

Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Jean Delvare 2009-06-04 13:35:15 +02:00 коммит произвёл Greg Kroah-Hartman
Родитель eb48d1f8f3
Коммит a970ff45c9
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -4516,7 +4516,7 @@ static struct pci_driver sxg_driver = {
.name = sxg_driver_name, .name = sxg_driver_name,
.id_table = sxg_pci_tbl, .id_table = sxg_pci_tbl,
.probe = sxg_entry_probe, .probe = sxg_entry_probe,
.remove = sxg_entry_remove, .remove = __devexit_p(sxg_entry_remove),
#if SXG_POWER_MANAGEMENT_ENABLED #if SXG_POWER_MANAGEMENT_ENABLED
.suspend = sxgpm_suspend, .suspend = sxgpm_suspend,
.resume = sxgpm_resume, .resume = sxgpm_resume,