diff options
Diffstat (limited to 'drivers/char/pcmcia/synclink_cs.c')
-rw-r--r-- | drivers/char/pcmcia/synclink_cs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/pcmcia/synclink_cs.c b/drivers/char/pcmcia/synclink_cs.c index 1dd0e992c83d..95743e2682fe 100644 --- a/drivers/char/pcmcia/synclink_cs.c +++ b/drivers/char/pcmcia/synclink_cs.c | |||
@@ -514,8 +514,8 @@ static void ldisc_receive_buf(struct tty_struct *tty, | |||
514 | return; | 514 | return; |
515 | ld = tty_ldisc_ref(tty); | 515 | ld = tty_ldisc_ref(tty); |
516 | if (ld) { | 516 | if (ld) { |
517 | if (ld->receive_buf) | 517 | if (ld->ops->receive_buf) |
518 | ld->receive_buf(tty, data, flags, count); | 518 | ld->ops->receive_buf(tty, data, flags, count); |
519 | tty_ldisc_deref(ld); | 519 | tty_ldisc_deref(ld); |
520 | } | 520 | } |
521 | } | 521 | } |