• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/wireless/

Lines Matching defs:strip

13  * strip.c	This module implements Starmode Radio IP (STRIP)
17 * Version: @(#)strip.c 1.3 July 1997
213 struct strip {
308 * (Both addresses are listed in /proc/net/strip.)
355 * address of all ones, e.g. "ifconfig st0 hw strip FFFFFFFFFFFF"
485 static void DumpData(char *msg, struct strip *strip_info, __u8 * ptr,
847 static int allocate_buffers(struct strip *strip_info, int mtu)
877 struct strip *strip_info = netdev_priv(dev);
892 printk(KERN_ERR "%s: unable to grow strip buffers, MTU change cancelled.\n",
920 printk(KERN_NOTICE "%s: strip MTU changed fom %d to %d.\n",
929 static void strip_unlock(struct strip *strip_info)
962 static struct strip *strip_get_idx(loff_t pos)
969 return list_entry(l, struct strip, list);
984 struct strip *s;
993 return list_entry(l, struct strip, list);
1039 const struct strip *strip_info)
1146 strip_seq_status_info(seq, (const struct strip *)v);
1177 static void ResetRadio(struct strip *strip_info)
1260 struct strip *strip_info = (struct strip *) tty->disc_data;
1300 struct strip *strip_info,
1402 static void strip_send(struct strip *strip_info, struct sk_buff *skb)
1560 struct strip *strip_info = netdev_priv(dev);
1636 struct strip *strip_info = netdev_priv(dev);
1683 static void get_radio_version(struct strip *strip_info, __u8 * ptr, __u8 * end)
1733 static void get_radio_voltage(struct strip *strip_info, __u8 * ptr, __u8 * end)
1768 static int get_radio_address(struct strip *strip_info, __u8 * p)
1792 static int verify_checksum(struct strip *strip_info)
1809 static void RecvErr(char *msg, struct strip *strip_info)
1817 static void RecvErr_Message(struct strip *strip_info, __u8 * sendername,
1916 static void process_AT_response(struct strip *strip_info, __u8 * ptr,
1951 static void process_ACK(struct strip *strip_info, __u8 * ptr, __u8 * end)
1956 static void process_Info(struct strip *strip_info, __u8 * ptr, __u8 * end)
1962 static struct net_device *get_strip_dev(struct strip *strip_info)
1965 /* real radio hardware address, try to find another strip device that has been */
1995 static void deliver_packet(struct strip *strip_info, STRIP_Header * header,
2028 static void process_IP_packet(struct strip *strip_info,
2070 static void process_ARP_packet(struct strip *strip_info,
2124 static void process_text_message(struct strip *strip_info)
2160 static void process_message(struct strip *strip_info)
2287 struct strip *strip_info = (struct strip *) tty->disc_data;
2359 static int set_mac_address(struct strip *strip_info,
2381 struct strip *strip_info = netdev_priv(dev);
2390 struct strip *strip_info = netdev_priv(dev);
2411 * When the user runs "slattach -p strip ..."
2435 struct strip *strip_info = netdev_priv(dev);
2468 struct strip *strip_info = netdev_priv(dev);
2512 * dev->priv Already holds a pointer to our struct strip
2537 static void strip_free(struct strip *strip_info)
2552 static struct strip *strip_alloc(void)
2556 struct strip *strip_info;
2558 dev = alloc_netdev(sizeof(struct strip), "st%d",
2586 struct strip *s = hlist_entry(n, struct strip, list);
2612 struct strip *strip_info = (struct strip *) tty->disc_data;
2633 printk(KERN_ERR "strip: register_netdev() failed.\n");
2677 struct strip *strip_info = (struct strip *) tty->disc_data;
2703 struct strip *strip_info = (struct strip *) tty->disc_data;
2746 .name = "strip",
2781 proc_net_fops_create("strip", S_IFREG | S_IRUGO, &strip_seq_fops);
2798 struct strip *s = list_entry(p, struct strip, list);
2803 proc_net_remove("strip");