Lines Matching refs:ifr
71 #define hdlc_raw_ioctl(hdlc, ifr) -ENOSYS argument
75 #define hdlc_raw_eth_ioctl(hdlc, ifr) -ENOSYS argument
79 #define hdlc_ppp_ioctl(hdlc, ifr) -ENOSYS argument
83 #define hdlc_cisco_ioctl(hdlc, ifr) -ENOSYS argument
87 #define hdlc_fr_ioctl(hdlc, ifr) -ENOSYS argument
91 #define hdlc_x25_ioctl(hdlc, ifr) -ENOSYS argument
95 int hdlc_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) in hdlc_ioctl() argument
103 switch(ifr->ifr_settings.type) { in hdlc_ioctl()
110 proto = ifr->ifr_settings.type; in hdlc_ioctl()
118 case IF_PROTO_HDLC: return hdlc_raw_ioctl(hdlc, ifr); in hdlc_ioctl()
119 case IF_PROTO_HDLC_ETH: return hdlc_raw_eth_ioctl(hdlc, ifr); in hdlc_ioctl()
120 case IF_PROTO_PPP: return hdlc_ppp_ioctl(hdlc, ifr); in hdlc_ioctl()
121 case IF_PROTO_CISCO: return hdlc_cisco_ioctl(hdlc, ifr); in hdlc_ioctl()
122 case IF_PROTO_FR: return hdlc_fr_ioctl(hdlc, ifr); in hdlc_ioctl()
123 case IF_PROTO_X25: return hdlc_x25_ioctl(hdlc, ifr); in hdlc_ioctl()