summaryrefslogtreecommitdiffstats
path: root/tty/tiny_tty.c
Commit message (Collapse)AuthorAgeFilesLines
* tty: tiny_tty: Use timer_setup() instead of init_timer()Javier Martinez Canillas2018-02-251-23/+10
| | | | | | The init_timer() function has been deprecated, use timer_setup() instead. Signed-off-by: Javier Martinez Canillas <javier@dowhile0.org>
* tty: tiny_tty: Include <linux/sched/signal.h> header for signal_pending()Javier Martinez Canillas2018-02-251-0/+1
| | | | Signed-off-by: Javier Martinez Canillas <javier@dowhile0.org>
* tiny_tty update for 3.10hwangcc2018-02-251-59/+64
| | | | | | | | 1. checkpatch.pl cleanups. 2. Add init_timer 3. Link tty ports. Signed-off-by: hwangcc <hwangcc@csie.nctu.edu.tw>
* tty: update termios access due tty_struct changesJavier Martinez Canillas2013-04-271-2/+2
| | | | | | | | | | commit adc8d746 ("tty: move the termios object into the tty") moved the struct ktermios inside struct tty_struct instead of keeping just a pointer to it. So, let's update the access to termios according to this change. Signed-off-by: Javier Martinez Canillas <javier@dowhile0.org>
* tty: pass tty_port to tty functions instead of tty_structJavier Martinez Canillas2013-04-271-4/+6
| | | | | | | | | | commit 227434f8 ("TTY: switch tty_buffer_request_room to tty_port") started to convert all tty functions to receive a tty_port instead of a tt_struct. Update the drivers according this API change. Signed-off-by: Javier Martinez Canillas <javier@dowhile0.org>
* tty: tiny_tty: Remove struct file * argument from tty_operations handler ↵Javier Martinez Canillas2011-03-081-14/+14
| | | | functions
* tty: Use sema_init() instead init_MUTEX()Javier Martinez Canillas2011-01-081-1/+1
|
* tty: tiny_tty: Use seq_file instead read_procJavier Martinez Canillas2011-01-081-22/+17
|
* tty: tiny_serial: Move handlers from tty_driver to tty_operationsJavier Martinez Canillas2010-12-311-8/+11
|
* tty: tiny_tty: Change now non-existing TTY_DRIVER_NO_DEVFS to ↵Javier Martinez Canillas2010-12-311-1/+1
| | | | TTY_DRIVER_DYNAMIC_DEV
* tty: tiny_tty: Remove the no longer needed devfs_name fieldJavier Martinez Canillas2010-12-311-1/+0
|
* tty: tiny_tty: Replace termios for ktermiosJavier Martinez Canillas2010-12-311-1/+1
|
* tty: tiny_tty: Add <linux/sched.h> headerJavier Martinez Canillas2010-12-311-0/+1
|
* tty: tiny_tty: Use tty_buffer_request_room instead of tty->flip.countJavier Martinez Canillas2010-12-311-1/+1
|
* tty: tiny_tty: Removes <linux/config.h>Javier Martinez Canillas2010-12-051-1/+0
|
* Linux Device Drivers 3 examplesJavier Martinez Canillas2010-11-271-0/+591