Skip to content

Commit

Permalink
ntb: remove __dev* markings
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
gregkh committed Jan 18, 2013
1 parent 548c237 commit 78a61ab
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion drivers/net/ntb_netdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ static const struct ntb_queue_handlers ntb_netdev_handlers = {
.event_handler = ntb_netdev_event_handler,
};

static int __devinit ntb_netdev_probe(struct pci_dev *pdev)
static int ntb_netdev_probe(struct pci_dev *pdev)
{
struct net_device *ndev;
struct ntb_netdev *dev;
Expand Down
16 changes: 7 additions & 9 deletions drivers/ntb/ntb_hw.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -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;

Expand Down Expand Up @@ -943,7 +943,7 @@ static int __devinit ntb_setup_interrupts(struct ntb_device *ndev)
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;

Expand Down Expand Up @@ -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;

Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -1122,7 +1120,7 @@ ntb_pci_probe(struct pci_dev *pdev,
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;
Expand Down Expand Up @@ -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);
4 changes: 2 additions & 2 deletions drivers/ntb/ntb_transport.c
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ struct bus_type ntb_bus_type = {

static LIST_HEAD(ntb_transport_list);

static int __devinit ntb_bus_init(struct ntb_transport *nt)
static int ntb_bus_init(struct ntb_transport *nt)
{
if (list_empty(&ntb_transport_list)) {
int rc = bus_register(&ntb_bus_type);
Expand All @@ -230,7 +230,7 @@ static int __devinit ntb_bus_init(struct ntb_transport *nt)
return 0;
}

static void __devexit ntb_bus_remove(struct ntb_transport *nt)
static void ntb_bus_remove(struct ntb_transport *nt)
{
struct ntb_transport_client_dev *client_dev, *cd;

Expand Down

0 comments on commit 78a61ab

Please sign in to comment.