diff options
Diffstat (limited to 'drivers/char/synclink_gt.c')
-rw-r--r-- | drivers/char/synclink_gt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/synclink_gt.c b/drivers/char/synclink_gt.c index 55c1653be00c..e473778cd6fa 100644 --- a/drivers/char/synclink_gt.c +++ b/drivers/char/synclink_gt.c | |||
@@ -641,8 +641,8 @@ static void ldisc_receive_buf(struct tty_struct *tty, | |||
641 | return; | 641 | return; |
642 | ld = tty_ldisc_ref(tty); | 642 | ld = tty_ldisc_ref(tty); |
643 | if (ld) { | 643 | if (ld) { |
644 | if (ld->receive_buf) | 644 | if (ld->ops->receive_buf) |
645 | ld->receive_buf(tty, data, flags, count); | 645 | ld->ops->receive_buf(tty, data, flags, count); |
646 | tty_ldisc_deref(ld); | 646 | tty_ldisc_deref(ld); |
647 | } | 647 | } |
648 | } | 648 | } |