diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2009-03-20 19:35:29 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-03-21 19:19:12 -0700 |
commit | dde09758557120cb71fb760cfeaed1b8e27209ef (patch) | |
tree | 30a63011bf9c7d16091d86b36031e08269a8fdf7 /net/atm | |
parent | 788dee0a954745a182f9341539e5e0fe874b48fc (diff) | |
download | linux-3.10-dde09758557120cb71fb760cfeaed1b8e27209ef.tar.gz linux-3.10-dde09758557120cb71fb760cfeaed1b8e27209ef.tar.bz2 linux-3.10-dde09758557120cb71fb760cfeaed1b8e27209ef.zip |
atm: convert clip driver to net_device_ops
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/atm')
-rw-r--r-- | net/atm/clip.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/net/atm/clip.c b/net/atm/clip.c index da42fd06b61..3dc0a3a42a5 100644 --- a/net/atm/clip.c +++ b/net/atm/clip.c @@ -552,10 +552,13 @@ static int clip_setentry(struct atm_vcc *vcc, __be32 ip) return error; } +static const struct net_device_ops clip_netdev_ops = { + .ndo_start_xmit = clip_start_xmit, +}; + static void clip_setup(struct net_device *dev) { - dev->hard_start_xmit = clip_start_xmit; - /* sg_xmit ... */ + dev->netdev_ops = &clip_netdev_ops; dev->type = ARPHRD_ATM; dev->hard_header_len = RFC1483LLC_LEN; dev->mtu = RFC1626_MTU; @@ -615,7 +618,7 @@ static int clip_device_event(struct notifier_block *this, unsigned long event, } /* ignore non-CLIP devices */ - if (dev->type != ARPHRD_ATM || dev->hard_start_xmit != clip_start_xmit) + if (dev->type != ARPHRD_ATM || dev->netdev_ops != &clip_netdev_ops) return NOTIFY_DONE; switch (event) { |