nfcon.c (dcaafbe6ee3b39f2df11a1352f85172f8ade17a5) | nfcon.c (95713967ba52389f7cea75704d0cf048080ec218) |
---|---|
1/* 2 * ARAnyM console driver 3 * 4 * This file is subject to the terms and conditions of the GNU General Public 5 * License. See the file COPYING in the main directory of this archive 6 * for more details. 7 */ 8 --- 56 unchanged lines hidden (view full) --- 65{ 66 return 0; 67} 68 69static void nfcon_tty_close(struct tty_struct *tty, struct file *filp) 70{ 71} 72 | 1/* 2 * ARAnyM console driver 3 * 4 * This file is subject to the terms and conditions of the GNU General Public 5 * License. See the file COPYING in the main directory of this archive 6 * for more details. 7 */ 8 --- 56 unchanged lines hidden (view full) --- 65{ 66 return 0; 67} 68 69static void nfcon_tty_close(struct tty_struct *tty, struct file *filp) 70{ 71} 72 |
73static int nfcon_tty_write(struct tty_struct *tty, const u8 *buf, int count) | 73static ssize_t nfcon_tty_write(struct tty_struct *tty, const u8 *buf, 74 size_t count) |
74{ 75 nfputs(buf, count); 76 return count; 77} 78 79static int nfcon_tty_put_char(struct tty_struct *tty, u8 ch) 80{ 81 u8 temp[2] = { ch, 0 }; --- 94 unchanged lines hidden --- | 75{ 76 nfputs(buf, count); 77 return count; 78} 79 80static int nfcon_tty_put_char(struct tty_struct *tty, u8 ch) 81{ 82 u8 temp[2] = { ch, 0 }; --- 94 unchanged lines hidden --- |