ntb: remove __dev* markings

These are now gone from the kernel, so remove them from the newly-added
drivers before they start to cause build errors for people.

Cc: Jon Mason <jon.mason@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Greg Kroah-Hartman
2013-01-17 19:17:42 -08:00
parent 548c237c0a
commit 78a61ab79a
3 changed files with 10 additions and 12 deletions

View File

@@ -637,7 +637,7 @@ static int ntb_bwd_setup(struct ntb_device *ndev)
return 0;
}
static int __devinit ntb_device_setup(struct ntb_device *ndev)
static int ntb_device_setup(struct ntb_device *ndev)
{
int rc;
@@ -909,7 +909,7 @@ static int ntb_setup_intx(struct ntb_device *ndev)
return 0;
}
static int __devinit ntb_setup_interrupts(struct ntb_device *ndev)
static int ntb_setup_interrupts(struct ntb_device *ndev)
{
int rc;
@@ -943,7 +943,7 @@ done:
return 0;
}
static void __devexit ntb_free_interrupts(struct ntb_device *ndev)
static void ntb_free_interrupts(struct ntb_device *ndev)
{
struct pci_dev *pdev = ndev->pdev;
@@ -973,7 +973,7 @@ static void __devexit ntb_free_interrupts(struct ntb_device *ndev)
}
}
static int __devinit ntb_create_callbacks(struct ntb_device *ndev)
static int ntb_create_callbacks(struct ntb_device *ndev)
{
int i;
@@ -1006,9 +1006,7 @@ static void ntb_free_callbacks(struct ntb_device *ndev)
kfree(ndev->db_cb);
}
static int __devinit
ntb_pci_probe(struct pci_dev *pdev,
__attribute__((unused)) const struct pci_device_id *id)
static int ntb_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
{
struct ntb_device *ndev;
int rc, i;
@@ -1122,7 +1120,7 @@ err:
return rc;
}
static void __devexit ntb_pci_remove(struct pci_dev *pdev)
static void ntb_pci_remove(struct pci_dev *pdev)
{
struct ntb_device *ndev = pci_get_drvdata(pdev);
int i;
@@ -1152,6 +1150,6 @@ static struct pci_driver ntb_pci_driver = {
.name = KBUILD_MODNAME,
.id_table = ntb_pci_tbl,
.probe = ntb_pci_probe,
.remove = __devexit_p(ntb_pci_remove),
.remove = ntb_pci_remove,
};
module_pci_driver(ntb_pci_driver);