diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/char/moxa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/moxa.c b/drivers/char/moxa.c index f841b1f74bfc..428c1380b771 100644 --- a/drivers/char/moxa.c +++ b/drivers/char/moxa.c | |||
@@ -741,9 +741,9 @@ static int moxa_ioctl(struct tty_struct *tty, struct file *file, | |||
741 | MoxaPortSendBreak(ch->port, arg); | 741 | MoxaPortSendBreak(ch->port, arg); |
742 | return (0); | 742 | return (0); |
743 | case TIOCGSOFTCAR: | 743 | case TIOCGSOFTCAR: |
744 | return put_user(C_CLOCAL(tty) ? 1 : 0, (unsigned long __user *) argp); | 744 | return put_user(C_CLOCAL(tty) ? 1 : 0, (int __user *)argp); |
745 | case TIOCSSOFTCAR: | 745 | case TIOCSSOFTCAR: |
746 | if(get_user(retval, (unsigned long __user *) argp)) | 746 | if (get_user(retval, (int __user *)argp)) |
747 | return -EFAULT; | 747 | return -EFAULT; |
748 | arg = retval; | 748 | arg = retval; |
749 | tty->termios->c_cflag = ((tty->termios->c_cflag & ~CLOCAL) | | 749 | tty->termios->c_cflag = ((tty->termios->c_cflag & ~CLOCAL) | |