diff options
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) |