diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-17 19:17:42 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-17 19:17:42 -0800 |
commit | 78a61ab79ae6bd75593b63fbaf5299c96bac0ea4 (patch) | |
tree | b475dddeebcc1b5d93fad0931f1e5df75aec0e3f /drivers/net/ntb_netdev.c | |
parent | 548c237c0a9972df5d1afaca38aa733ee577128d (diff) |
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>
Diffstat (limited to 'drivers/net/ntb_netdev.c')
-rw-r--r-- | drivers/net/ntb_netdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ntb_netdev.c b/drivers/net/ntb_netdev.c index af48a69cab02..4e52fd2b8226 100644 --- a/drivers/net/ntb_netdev.c +++ b/drivers/net/ntb_netdev.c @@ -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; |