drivers/ide/pci/: use __devexit_p()

This patch adds missing __devexit_p's.

Reported-by: Russell King <rmk+lkml@arm.linux.org.uk>
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>

authored by Adrian Bunk and committed by Bartlomiej Zolnierkiewicz a69999e2 b09c3e3f

+10 -10
+1 -1
drivers/ide/pci/aec62xx.c
··· 307 307 .name = "AEC62xx_IDE", 308 308 .id_table = aec62xx_pci_tbl, 309 309 .probe = aec62xx_init_one, 310 - .remove = aec62xx_remove, 310 + .remove = __devexit_p(aec62xx_remove), 311 311 }; 312 312 313 313 static int __init aec62xx_ide_init(void)
+1 -1
drivers/ide/pci/cy82c693.c
··· 447 447 .name = "Cypress_IDE", 448 448 .id_table = cy82c693_pci_tbl, 449 449 .probe = cy82c693_init_one, 450 - .remove = cy82c693_remove, 450 + .remove = __devexit_p(cy82c693_remove), 451 451 }; 452 452 453 453 static int __init cy82c693_ide_init(void)
+1 -1
drivers/ide/pci/hpt366.c
··· 1620 1620 .name = "HPT366_IDE", 1621 1621 .id_table = hpt366_pci_tbl, 1622 1622 .probe = hpt366_init_one, 1623 - .remove = hpt366_remove, 1623 + .remove = __devexit_p(hpt366_remove), 1624 1624 }; 1625 1625 1626 1626 static int __init hpt366_ide_init(void)
+1 -1
drivers/ide/pci/it821x.c
··· 686 686 .name = "ITE821x IDE", 687 687 .id_table = it821x_pci_tbl, 688 688 .probe = it821x_init_one, 689 - .remove = it821x_remove, 689 + .remove = __devexit_p(it821x_remove), 690 690 }; 691 691 692 692 static int __init it821x_ide_init(void)
+1 -1
drivers/ide/pci/pdc202xx_new.c
··· 566 566 .name = "Promise_IDE", 567 567 .id_table = pdc202new_pci_tbl, 568 568 .probe = pdc202new_init_one, 569 - .remove = pdc202new_remove, 569 + .remove = __devexit_p(pdc202new_remove), 570 570 }; 571 571 572 572 static int __init pdc202new_ide_init(void)
+1 -1
drivers/ide/pci/scc_pata.c
··· 954 954 .name = "SCC IDE", 955 955 .id_table = scc_pci_tbl, 956 956 .probe = scc_init_one, 957 - .remove = scc_remove, 957 + .remove = __devexit_p(scc_remove), 958 958 }; 959 959 960 960 static int scc_ide_init(void)
+1 -1
drivers/ide/pci/siimage.c
··· 832 832 .name = "SiI_IDE", 833 833 .id_table = siimage_pci_tbl, 834 834 .probe = siimage_init_one, 835 - .remove = siimage_remove, 835 + .remove = __devexit_p(siimage_remove), 836 836 }; 837 837 838 838 static int __init siimage_ide_init(void)
+1 -1
drivers/ide/pci/sis5513.c
··· 610 610 .name = "SIS_IDE", 611 611 .id_table = sis5513_pci_tbl, 612 612 .probe = sis5513_init_one, 613 - .remove = sis5513_remove, 613 + .remove = __devexit_p(sis5513_remove), 614 614 }; 615 615 616 616 static int __init sis5513_ide_init(void)
+1 -1
drivers/ide/pci/tc86c001.c
··· 249 249 .name = "TC86C001", 250 250 .id_table = tc86c001_pci_tbl, 251 251 .probe = tc86c001_init_one, 252 - .remove = tc86c001_remove, 252 + .remove = __devexit_p(tc86c001_remove), 253 253 }; 254 254 255 255 static int __init tc86c001_ide_init(void)
+1 -1
drivers/ide/pci/via82cxxx.c
··· 491 491 .name = "VIA_IDE", 492 492 .id_table = via_pci_tbl, 493 493 .probe = via_init_one, 494 - .remove = via_remove, 494 + .remove = __devexit_p(via_remove), 495 495 }; 496 496 497 497 static int __init via_ide_init(void)