Remove bogons from the iSeries console

The iSeries driver calls into the n_tty ldisc code directly for some
bizarre reason. I previously tagged this with a query but this actually
does need fixing as n_tty methods when you have a different ldisc set are
not a good thing to call.

In n_tty mode this change should have no effect, the core tty layer has
always called the ldisc ioctl method *anyway* and will call the one for
the right ldisc.

Signed-off-by: Alan Cox <alan@redhat.com>
Acked-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Alan Cox and committed by Linus Torvalds 8bc5fb6a 3a35c27a

-4
-4
drivers/char/viocons.c
··· 705 705 case KDSKBLED: 706 706 return 0; 707 707 } 708 - /* FIXME: WTF is this being called for ??? */ 709 - lock_kernel(); 710 - ret = n_tty_ioctl(tty, file, cmd, arg); 711 - unlock_kernel(); 712 708 return ret; 713 709 } 714 710