Home
last modified time | relevance | path

Searched refs:next_ch (Results 1 – 1 of 1) sorted by relevance

/linux-2.4.37.9/drivers/net/
Dppp_synctty.c107 register __u8 next_ch; in ppp_print_hex() local
111 next_ch = *in++; in ppp_print_hex()
112 *out++ = hex[(next_ch >> 4) & 0x0F]; in ppp_print_hex()
113 *out++ = hex[next_ch & 0x0F]; in ppp_print_hex()
121 register __u8 next_ch; in ppp_print_char() local
124 next_ch = *in++; in ppp_print_char()
126 if (next_ch < 0x20 || next_ch > 0x7e) in ppp_print_char()
129 *out++ = next_ch; in ppp_print_char()
130 if (next_ch == '%') /* printk/syslogd has a bug !! */ in ppp_print_char()