diff options
Diffstat (limited to 'drivers/char/sx.c')
-rw-r--r-- | drivers/char/sx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/sx.c b/drivers/char/sx.c index a71bc58abe7f..b60be7b0decf 100644 --- a/drivers/char/sx.c +++ b/drivers/char/sx.c | |||
@@ -1941,7 +1941,7 @@ static int sx_ioctl(struct tty_struct *tty, struct file *filp, | |||
1941 | 1941 | ||
1942 | static void sx_throttle(struct tty_struct *tty) | 1942 | static void sx_throttle(struct tty_struct *tty) |
1943 | { | 1943 | { |
1944 | struct sx_port *port = (struct sx_port *)tty->driver_data; | 1944 | struct sx_port *port = tty->driver_data; |
1945 | 1945 | ||
1946 | func_enter2(); | 1946 | func_enter2(); |
1947 | /* If the port is using any type of input flow | 1947 | /* If the port is using any type of input flow |
@@ -1955,7 +1955,7 @@ static void sx_throttle(struct tty_struct *tty) | |||
1955 | 1955 | ||
1956 | static void sx_unthrottle(struct tty_struct *tty) | 1956 | static void sx_unthrottle(struct tty_struct *tty) |
1957 | { | 1957 | { |
1958 | struct sx_port *port = (struct sx_port *)tty->driver_data; | 1958 | struct sx_port *port = tty->driver_data; |
1959 | 1959 | ||
1960 | func_enter2(); | 1960 | func_enter2(); |
1961 | /* Always unthrottle even if flow control is not enabled on | 1961 | /* Always unthrottle even if flow control is not enabled on |