tty: remove use of __devinit
[deliverable/linux.git] / drivers / tty / serial / pch_uart.c
index 4cd6c2381528c53127959872a295077849625cba..8318925fbf6bb82e9588f8e2a99b3c93083ce5ca 100644 (file)
@@ -1839,7 +1839,7 @@ static DEFINE_PCI_DEVICE_TABLE(pch_uart_pci_id) = {
        {0,},
 };
 
-static int __devinit pch_uart_pci_probe(struct pci_dev *pdev,
+static int pch_uart_pci_probe(struct pci_dev *pdev,
                                        const struct pci_device_id *id)
 {
        int ret;
@@ -1869,7 +1869,7 @@ static struct pci_driver pch_uart_pci_driver = {
        .name = "pch_uart",
        .id_table = pch_uart_pci_id,
        .probe = pch_uart_pci_probe,
-       .remove = __devexit_p(pch_uart_pci_remove),
+       .remove = pch_uart_pci_remove,
        .suspend = pch_uart_pci_suspend,
        .resume = pch_uart_pci_resume,
 };
This page took 0.025052 seconds and 5 git commands to generate.