| .. | .. |
|---|
| 398 | 398 | } |
|---|
| 399 | 399 | if (dstat == 0x08) |
|---|
| 400 | 400 | break; |
|---|
| 401 | + fallthrough; |
|---|
| 401 | 402 | case 0x04: |
|---|
| 402 | 403 | /* Device end interrupt. */ |
|---|
| 403 | 404 | if ((raw = req->info) == NULL) |
|---|
| .. | .. |
|---|
| 977 | 978 | static int tty3215_open(struct tty_struct *tty, struct file * filp) |
|---|
| 978 | 979 | { |
|---|
| 979 | 980 | struct raw3215_info *raw = tty->driver_data; |
|---|
| 980 | | - int retval; |
|---|
| 981 | 981 | |
|---|
| 982 | 982 | tty_port_tty_set(&raw->port, tty); |
|---|
| 983 | 983 | |
|---|
| .. | .. |
|---|
| 985 | 985 | /* |
|---|
| 986 | 986 | * Start up 3215 device |
|---|
| 987 | 987 | */ |
|---|
| 988 | | - retval = raw3215_startup(raw); |
|---|
| 989 | | - if (retval) |
|---|
| 990 | | - return retval; |
|---|
| 991 | | - |
|---|
| 992 | | - return 0; |
|---|
| 988 | + return raw3215_startup(raw); |
|---|
| 993 | 989 | } |
|---|
| 994 | 990 | |
|---|
| 995 | 991 | /* |
|---|