Loading drivers/net/wan/hdlc_x25.c +0 −22 Original line number Diff line number Diff line Loading @@ -70,22 +70,16 @@ static void x25_connect_disconnect(struct net_device *dev, int reason, int code) tasklet_schedule(&x25st->rx_tasklet); } static void x25_connected(struct net_device *dev, int reason) { x25_connect_disconnect(dev, reason, X25_IFACE_CONNECT); } static void x25_disconnected(struct net_device *dev, int reason) { x25_connect_disconnect(dev, reason, X25_IFACE_DISCONNECT); } static int x25_data_indication(struct net_device *dev, struct sk_buff *skb) { struct x25_state *x25st = state(dev_to_hdlc(dev)); Loading @@ -108,8 +102,6 @@ static int x25_data_indication(struct net_device *dev, struct sk_buff *skb) return NET_RX_SUCCESS; } static void x25_data_transmit(struct net_device *dev, struct sk_buff *skb) { hdlc_device *hdlc = dev_to_hdlc(dev); Loading @@ -123,8 +115,6 @@ static void x25_data_transmit(struct net_device *dev, struct sk_buff *skb) hdlc->xmit(skb, dev); /* Ignore return value :-( */ } static netdev_tx_t x25_xmit(struct sk_buff *skb, struct net_device *dev) { hdlc_device *hdlc = dev_to_hdlc(dev); Loading Loading @@ -185,8 +175,6 @@ static netdev_tx_t x25_xmit(struct sk_buff *skb, struct net_device *dev) return NETDEV_TX_OK; } static int x25_open(struct net_device *dev) { static const struct lapb_register_struct cb = { Loading Loading @@ -232,8 +220,6 @@ static int x25_open(struct net_device *dev) return 0; } static void x25_close(struct net_device *dev) { hdlc_device *hdlc = dev_to_hdlc(dev); Loading @@ -247,8 +233,6 @@ static void x25_close(struct net_device *dev) tasklet_kill(&x25st->rx_tasklet); } static int x25_rx(struct sk_buff *skb) { struct net_device *dev = skb->dev; Loading Loading @@ -279,7 +263,6 @@ static int x25_rx(struct sk_buff *skb) return NET_RX_DROP; } static struct hdlc_proto proto = { .open = x25_open, .close = x25_close, Loading @@ -289,7 +272,6 @@ static struct hdlc_proto proto = { .module = THIS_MODULE, }; static int x25_ioctl(struct net_device *dev, struct ifreq *ifr) { x25_hdlc_proto __user *x25_s = ifr->ifr_settings.ifs_ifsu.x25; Loading Loading @@ -380,21 +362,17 @@ static int x25_ioctl(struct net_device *dev, struct ifreq *ifr) return -EINVAL; } static int __init mod_init(void) { register_hdlc_protocol(&proto); return 0; } static void __exit mod_exit(void) { unregister_hdlc_protocol(&proto); } module_init(mod_init); module_exit(mod_exit); Loading Loading
drivers/net/wan/hdlc_x25.c +0 −22 Original line number Diff line number Diff line Loading @@ -70,22 +70,16 @@ static void x25_connect_disconnect(struct net_device *dev, int reason, int code) tasklet_schedule(&x25st->rx_tasklet); } static void x25_connected(struct net_device *dev, int reason) { x25_connect_disconnect(dev, reason, X25_IFACE_CONNECT); } static void x25_disconnected(struct net_device *dev, int reason) { x25_connect_disconnect(dev, reason, X25_IFACE_DISCONNECT); } static int x25_data_indication(struct net_device *dev, struct sk_buff *skb) { struct x25_state *x25st = state(dev_to_hdlc(dev)); Loading @@ -108,8 +102,6 @@ static int x25_data_indication(struct net_device *dev, struct sk_buff *skb) return NET_RX_SUCCESS; } static void x25_data_transmit(struct net_device *dev, struct sk_buff *skb) { hdlc_device *hdlc = dev_to_hdlc(dev); Loading @@ -123,8 +115,6 @@ static void x25_data_transmit(struct net_device *dev, struct sk_buff *skb) hdlc->xmit(skb, dev); /* Ignore return value :-( */ } static netdev_tx_t x25_xmit(struct sk_buff *skb, struct net_device *dev) { hdlc_device *hdlc = dev_to_hdlc(dev); Loading Loading @@ -185,8 +175,6 @@ static netdev_tx_t x25_xmit(struct sk_buff *skb, struct net_device *dev) return NETDEV_TX_OK; } static int x25_open(struct net_device *dev) { static const struct lapb_register_struct cb = { Loading Loading @@ -232,8 +220,6 @@ static int x25_open(struct net_device *dev) return 0; } static void x25_close(struct net_device *dev) { hdlc_device *hdlc = dev_to_hdlc(dev); Loading @@ -247,8 +233,6 @@ static void x25_close(struct net_device *dev) tasklet_kill(&x25st->rx_tasklet); } static int x25_rx(struct sk_buff *skb) { struct net_device *dev = skb->dev; Loading Loading @@ -279,7 +263,6 @@ static int x25_rx(struct sk_buff *skb) return NET_RX_DROP; } static struct hdlc_proto proto = { .open = x25_open, .close = x25_close, Loading @@ -289,7 +272,6 @@ static struct hdlc_proto proto = { .module = THIS_MODULE, }; static int x25_ioctl(struct net_device *dev, struct ifreq *ifr) { x25_hdlc_proto __user *x25_s = ifr->ifr_settings.ifs_ifsu.x25; Loading Loading @@ -380,21 +362,17 @@ static int x25_ioctl(struct net_device *dev, struct ifreq *ifr) return -EINVAL; } static int __init mod_init(void) { register_hdlc_protocol(&proto); return 0; } static void __exit mod_exit(void) { unregister_hdlc_protocol(&proto); } module_init(mod_init); module_exit(mod_exit); Loading