diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2009-03-20 15:35:45 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-03-21 22:33:49 -0400 |
commit | 9b634007d5694178c4e142fbc5f9dbcd767eafbd (patch) | |
tree | defcfdc65c13ecc15b708b7a677ba91a1cb2ea97 | |
parent | 2b023f46cbc6187f6ee88e778ed798745b5b2bfe (diff) |
irda: convert kingsun device to net_device_ops
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/irda/kingsun-sir.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/drivers/net/irda/kingsun-sir.c b/drivers/net/irda/kingsun-sir.c index b4a61717254a..9d813bc4502e 100644 --- a/drivers/net/irda/kingsun-sir.c +++ b/drivers/net/irda/kingsun-sir.c | |||
@@ -418,6 +418,12 @@ static int kingsun_net_ioctl(struct net_device *netdev, struct ifreq *rq, | |||
418 | return ret; | 418 | return ret; |
419 | } | 419 | } |
420 | 420 | ||
421 | static const struct net_device_ops kingsun_ops = { | ||
422 | .ndo_start_xmit = kingsun_hard_xmit, | ||
423 | .ndo_open = kingsun_net_open, | ||
424 | .ndo_stop = kingsun_net_close, | ||
425 | .ndo_do_ioctl = kingsun_net_ioctl, | ||
426 | }; | ||
421 | 427 | ||
422 | /* | 428 | /* |
423 | * This routine is called by the USB subsystem for each new device | 429 | * This routine is called by the USB subsystem for each new device |
@@ -520,10 +526,7 @@ static int kingsun_probe(struct usb_interface *intf, | |||
520 | irda_qos_bits_to_value(&kingsun->qos); | 526 | irda_qos_bits_to_value(&kingsun->qos); |
521 | 527 | ||
522 | /* Override the network functions we need to use */ | 528 | /* Override the network functions we need to use */ |
523 | net->hard_start_xmit = kingsun_hard_xmit; | 529 | net->netdev_ops = &kingsun_ops; |
524 | net->open = kingsun_net_open; | ||
525 | net->stop = kingsun_net_close; | ||
526 | net->do_ioctl = kingsun_net_ioctl; | ||
527 | 530 | ||
528 | ret = register_netdev(net); | 531 | ret = register_netdev(net); |
529 | if (ret != 0) | 532 | if (ret != 0) |