Lines Matching refs:hdlc_device
159 }hdlc_device; typedef
163 int hdlc_raw_ioctl(hdlc_device *hdlc, struct ifreq *ifr);
164 int hdlc_raw_eth_ioctl(hdlc_device *hdlc, struct ifreq *ifr);
165 int hdlc_cisco_ioctl(hdlc_device *hdlc, struct ifreq *ifr);
166 int hdlc_ppp_ioctl(hdlc_device *hdlc, struct ifreq *ifr);
167 int hdlc_fr_ioctl(hdlc_device *hdlc, struct ifreq *ifr);
168 int hdlc_x25_ioctl(hdlc_device *hdlc, struct ifreq *ifr);
177 int register_hdlc_device(hdlc_device *hdlc);
178 void unregister_hdlc_device(hdlc_device *hdlc);
181 static __inline__ struct net_device* hdlc_to_dev(hdlc_device *hdlc) in hdlc_to_dev()
187 static __inline__ hdlc_device* dev_to_hdlc(struct net_device *dev) in dev_to_hdlc()
189 return (hdlc_device*)dev; in dev_to_hdlc()
199 static __inline__ const char *hdlc_to_name(hdlc_device *hdlc) in hdlc_to_name()
222 static __inline__ int hdlc_open(hdlc_device *hdlc) in hdlc_open()
234 static __inline__ void hdlc_close(hdlc_device *hdlc) in hdlc_close()
242 static __inline__ void hdlc_proto_detach(hdlc_device *hdlc) in hdlc_proto_detach()
253 hdlc_device *hdlc = dev_to_hdlc(skb->dev); in hdlc_type_trans()