diff options
| author | Tony Luck <tony.luck@intel.com> | 2005-05-17 18:53:14 -0400 |
|---|---|---|
| committer | Tony Luck <tony.luck@intel.com> | 2005-05-17 18:53:14 -0400 |
| commit | 325a479c4c110db278ef3361460a48c4093252cc (patch) | |
| tree | bcfbf4d0647d9442045639a5c19da59d55190e81 /drivers/char/specialix.c | |
| parent | ebcc80c1b6629a445f7471cc1ddb48faf8a84e70 (diff) | |
| parent | 7f9eaedf894dbaa08c157832e9a6c9c03ffed1ed (diff) | |
Merge with temp tree to get David's gdb inferior calls patch
Diffstat (limited to 'drivers/char/specialix.c')
| -rw-r--r-- | drivers/char/specialix.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/drivers/char/specialix.c b/drivers/char/specialix.c index c789d5ceac76..50e0b612a8a2 100644 --- a/drivers/char/specialix.c +++ b/drivers/char/specialix.c | |||
| @@ -1987,10 +1987,9 @@ static inline int sx_set_serial_info(struct specialix_port * port, | |||
| 1987 | 1987 | ||
| 1988 | func_enter(); | 1988 | func_enter(); |
| 1989 | /* | 1989 | /* |
| 1990 | error = verify_area(VERIFY_READ, (void *) newinfo, sizeof(tmp)); | 1990 | if (!access_ok(VERIFY_READ, (void *) newinfo, sizeof(tmp))) { |
| 1991 | if (error) { | ||
| 1992 | func_exit(); | 1991 | func_exit(); |
| 1993 | return error; | 1992 | return -EFAULT; |
| 1994 | } | 1993 | } |
| 1995 | */ | 1994 | */ |
| 1996 | if (copy_from_user(&tmp, newinfo, sizeof(tmp))) { | 1995 | if (copy_from_user(&tmp, newinfo, sizeof(tmp))) { |
| @@ -2046,14 +2045,12 @@ static inline int sx_get_serial_info(struct specialix_port * port, | |||
| 2046 | { | 2045 | { |
| 2047 | struct serial_struct tmp; | 2046 | struct serial_struct tmp; |
| 2048 | struct specialix_board *bp = port_Board(port); | 2047 | struct specialix_board *bp = port_Board(port); |
| 2049 | // int error; | ||
| 2050 | 2048 | ||
| 2051 | func_enter(); | 2049 | func_enter(); |
| 2052 | 2050 | ||
| 2053 | /* | 2051 | /* |
| 2054 | error = verify_area(VERIFY_WRITE, (void *) retinfo, sizeof(tmp)); | 2052 | if (!access_ok(VERIFY_WRITE, (void *) retinfo, sizeof(tmp))) |
| 2055 | if (error) | 2053 | return -EFAULT; |
| 2056 | return error; | ||
| 2057 | */ | 2054 | */ |
| 2058 | 2055 | ||
| 2059 | memset(&tmp, 0, sizeof(tmp)); | 2056 | memset(&tmp, 0, sizeof(tmp)); |
