diff options
Diffstat (limited to 'drivers/char/synclinkmp.c')
-rw-r--r-- | drivers/char/synclinkmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/synclinkmp.c b/drivers/char/synclinkmp.c index bec54866e0bb..5341b5aaf8bc 100644 --- a/drivers/char/synclinkmp.c +++ b/drivers/char/synclinkmp.c | |||
@@ -712,8 +712,8 @@ static void ldisc_receive_buf(struct tty_struct *tty, | |||
712 | return; | 712 | return; |
713 | ld = tty_ldisc_ref(tty); | 713 | ld = tty_ldisc_ref(tty); |
714 | if (ld) { | 714 | if (ld) { |
715 | if (ld->receive_buf) | 715 | if (ld->ops->receive_buf) |
716 | ld->receive_buf(tty, data, flags, count); | 716 | ld->ops->receive_buf(tty, data, flags, count); |
717 | tty_ldisc_deref(ld); | 717 | tty_ldisc_deref(ld); |
718 | } | 718 | } |
719 | } | 719 | } |