staging: speakup: add tty-based comms functions
This adds spk_ttyio.c file. It contains a set of functions which implement those methods in spk_synth struct which relate to sending bytes out using serial comms. Implementations in this file perform the same function but using TTY subsystem instead. Currently synths access serial ports, directly poking standard ISA ports by trying to steal them from serial driver. Some ISA cards actually need this way of doing it, but most other synthesizers don't, and can actually work by using the proper TTY subsystem through a new N_SPEAKUP line discipline. So this adds the methods for drivers to switch to accessing serial ports through the TTY subsystem, whenever appropriate. Signed-off-by: Okash Khawaja <okash.khawaja@gmail.com> Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
12e84c71b7
commit
1ab92da32e
@@ -605,6 +605,7 @@ err:
|
||||
tty_unlock(tty);
|
||||
return retval;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(tty_set_ldisc);
|
||||
|
||||
/**
|
||||
* tty_ldisc_kill - teardown ldisc
|
||||
@@ -797,6 +798,7 @@ void tty_ldisc_release(struct tty_struct *tty)
|
||||
|
||||
tty_ldisc_debug(tty, "released\n");
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(tty_ldisc_release);
|
||||
|
||||
/**
|
||||
* tty_ldisc_init - ldisc setup for new tty
|
||||
|
Reference in New Issue
Block a user