mirror of https://gitee.com/openkylin/linux.git
staging: speakup: check for null before calling TTY's flush_buffer
We should check the flush_buffer method of a tty for null before invoking it. Some drivers such as usbserial don't implement flush_buffer. This will be required for upcoming patches where we expand spk_ttyio to support more than just ttyS*. 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:
parent
d0b112ac2a
commit
011cca558b
|
@ -227,7 +227,8 @@ static unsigned char spk_ttyio_in_nowait(void)
|
||||||
|
|
||||||
static void spk_ttyio_flush_buffer(void)
|
static void spk_ttyio_flush_buffer(void)
|
||||||
{
|
{
|
||||||
speakup_tty->ops->flush_buffer(speakup_tty);
|
if (speakup_tty->ops->flush_buffer)
|
||||||
|
speakup_tty->ops->flush_buffer(speakup_tty);
|
||||||
}
|
}
|
||||||
|
|
||||||
int spk_ttyio_synth_probe(struct spk_synth *synth)
|
int spk_ttyio_synth_probe(struct spk_synth *synth)
|
||||||
|
|
Loading…
Reference in New Issue