Commit 8e0e46bb authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman

xen-netfront: remove __dev* attributes

CONFIG_HOTPLUG is going away as an option.  As result the __dev*
markings will be going away.

Remove use of __devinit, __devexit_p, __devinitdata, __devinitconst,
and __devexit.
Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Jeremy Fitzhardinge <jeremy@goop.org>
Cc: xen-devel@lists.xensource.com
Cc: virtualization@lists.linux-foundation.org
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a46182eb
...@@ -1311,7 +1311,7 @@ static const struct net_device_ops xennet_netdev_ops = { ...@@ -1311,7 +1311,7 @@ static const struct net_device_ops xennet_netdev_ops = {
#endif #endif
}; };
static struct net_device * __devinit xennet_create_dev(struct xenbus_device *dev) static struct net_device *xennet_create_dev(struct xenbus_device *dev)
{ {
int i, err; int i, err;
struct net_device *netdev; struct net_device *netdev;
...@@ -1407,7 +1407,7 @@ static struct net_device * __devinit xennet_create_dev(struct xenbus_device *dev ...@@ -1407,7 +1407,7 @@ static struct net_device * __devinit xennet_create_dev(struct xenbus_device *dev
* structures and the ring buffers for communication with the backend, and * structures and the ring buffers for communication with the backend, and
* inform the backend of the appropriate details for those. * inform the backend of the appropriate details for those.
*/ */
static int __devinit netfront_probe(struct xenbus_device *dev, static int netfront_probe(struct xenbus_device *dev,
const struct xenbus_device_id *id) const struct xenbus_device_id *id)
{ {
int err; int err;
...@@ -1967,7 +1967,7 @@ static const struct xenbus_device_id netfront_ids[] = { ...@@ -1967,7 +1967,7 @@ static const struct xenbus_device_id netfront_ids[] = {
}; };
static int __devexit xennet_remove(struct xenbus_device *dev) static int xennet_remove(struct xenbus_device *dev)
{ {
struct netfront_info *info = dev_get_drvdata(&dev->dev); struct netfront_info *info = dev_get_drvdata(&dev->dev);
...@@ -1990,7 +1990,7 @@ static int __devexit xennet_remove(struct xenbus_device *dev) ...@@ -1990,7 +1990,7 @@ static int __devexit xennet_remove(struct xenbus_device *dev)
static DEFINE_XENBUS_DRIVER(netfront, , static DEFINE_XENBUS_DRIVER(netfront, ,
.probe = netfront_probe, .probe = netfront_probe,
.remove = __devexit_p(xennet_remove), .remove = xennet_remove,
.resume = netfront_resume, .resume = netfront_resume,
.otherend_changed = netback_changed, .otherend_changed = netback_changed,
); );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment