Lines Matching full:hdlc
3 * Generic HDLC support routines for Linux
13 #include <linux/hdlc/ioctl.h>
14 #include <uapi/linux/hdlc.h>
16 /* This structure is a private property of HDLC protocols.
36 /* used by HDLC layer to take control over HDLC device from hw driver*/
43 /* Things below are for HDLC layer internal use only */
54 /* Exported from hdlc module */
56 /* Called by hardware driver when a user requests HDLC service */
89 /* Must be called by hardware driver when HDLC device is being opened */
91 /* Must be called by hardware driver when HDLC device is being closed */
98 /* May be used by hardware driver to gain control over HDLC device */
104 hdlc_device *hdlc = dev_to_hdlc(dev); in hdlc_type_trans() local
109 if (hdlc->proto->type_trans) in hdlc_type_trans()
110 return hdlc->proto->type_trans(skb, dev); in hdlc_type_trans()