diff options
Diffstat (limited to 'drivers/char/synclink.c')
-rw-r--r-- | drivers/char/synclink.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/synclink.c b/drivers/char/synclink.c index ac5080df2565..5e4b2e638d0c 100644 --- a/drivers/char/synclink.c +++ b/drivers/char/synclink.c | |||
@@ -975,8 +975,8 @@ static void ldisc_receive_buf(struct tty_struct *tty, | |||
975 | return; | 975 | return; |
976 | ld = tty_ldisc_ref(tty); | 976 | ld = tty_ldisc_ref(tty); |
977 | if (ld) { | 977 | if (ld) { |
978 | if (ld->receive_buf) | 978 | if (ld->ops->receive_buf) |
979 | ld->receive_buf(tty, data, flags, count); | 979 | ld->ops->receive_buf(tty, data, flags, count); |
980 | tty_ldisc_deref(ld); | 980 | tty_ldisc_deref(ld); |
981 | } | 981 | } |
982 | } | 982 | } |