diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2009-03-20 15:35:47 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-03-21 22:33:51 -0400 |
commit | 94ffab6d199ab36e5dfd2f2f0e4bb135728526c4 (patch) | |
tree | 9d7506e7b4bf2ff498feae7860164dfea5a18d21 /drivers/net/irda/ks959-sir.c | |
parent | 0c818a6273218f5a827fe5f41f01caeb679b469e (diff) |
irda: convert ks959 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 'drivers/net/irda/ks959-sir.c')
-rw-r--r-- | drivers/net/irda/ks959-sir.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/drivers/net/irda/ks959-sir.c b/drivers/net/irda/ks959-sir.c index 55322fb92cf1..b6ffe9715b61 100644 --- a/drivers/net/irda/ks959-sir.c +++ b/drivers/net/irda/ks959-sir.c | |||
@@ -668,6 +668,12 @@ static int ks959_net_ioctl(struct net_device *netdev, struct ifreq *rq, int cmd) | |||
668 | return ret; | 668 | return ret; |
669 | } | 669 | } |
670 | 670 | ||
671 | static const struct net_device_ops ks959_ops = { | ||
672 | .ndo_start_xmit = ks959_hard_xmit, | ||
673 | .ndo_open = ks959_net_open, | ||
674 | .ndo_stop = ks959_net_close, | ||
675 | .ndo_do_ioctl = ks959_net_ioctl, | ||
676 | }; | ||
671 | /* | 677 | /* |
672 | * This routine is called by the USB subsystem for each new device | 678 | * This routine is called by the USB subsystem for each new device |
673 | * in the system. We need to check if the device is ours, and in | 679 | * in the system. We need to check if the device is ours, and in |
@@ -780,10 +786,7 @@ static int ks959_probe(struct usb_interface *intf, | |||
780 | irda_qos_bits_to_value(&kingsun->qos); | 786 | irda_qos_bits_to_value(&kingsun->qos); |
781 | 787 | ||
782 | /* Override the network functions we need to use */ | 788 | /* Override the network functions we need to use */ |
783 | net->hard_start_xmit = ks959_hard_xmit; | 789 | net->netdev_ops = &ks959_ops; |
784 | net->open = ks959_net_open; | ||
785 | net->stop = ks959_net_close; | ||
786 | net->do_ioctl = ks959_net_ioctl; | ||
787 | 790 | ||
788 | ret = register_netdev(net); | 791 | ret = register_netdev(net); |
789 | if (ret != 0) | 792 | if (ret != 0) |