| .. | .. |
|---|
| 384 | 384 | .owner = THIS_MODULE, |
|---|
| 385 | 385 | .llseek = no_llseek, |
|---|
| 386 | 386 | .unlocked_ioctl = mixer_unlocked_ioctl, |
|---|
| 387 | + .compat_ioctl = compat_ptr_ioctl, |
|---|
| 387 | 388 | .open = mixer_open, |
|---|
| 388 | 389 | .release = mixer_release, |
|---|
| 389 | 390 | }; |
|---|
| .. | .. |
|---|
| 1167 | 1168 | .write = sq_write, |
|---|
| 1168 | 1169 | .poll = sq_poll, |
|---|
| 1169 | 1170 | .unlocked_ioctl = sq_unlocked_ioctl, |
|---|
| 1171 | + .compat_ioctl = compat_ptr_ioctl, |
|---|
| 1170 | 1172 | .open = sq_open, |
|---|
| 1171 | 1173 | .release = sq_release, |
|---|
| 1172 | 1174 | }; |
|---|
| .. | .. |
|---|
| 1476 | 1478 | printk("dmasound_setup: invalid catch radius, using default = %d\n", catchRadius); |
|---|
| 1477 | 1479 | else |
|---|
| 1478 | 1480 | catchRadius = ints[3]; |
|---|
| 1479 | | - /* fall through */ |
|---|
| 1481 | + fallthrough; |
|---|
| 1480 | 1482 | case 2: |
|---|
| 1481 | 1483 | if (ints[1] < MIN_BUFFERS) |
|---|
| 1482 | 1484 | printk("dmasound_setup: invalid number of buffers, using default = %d\n", numWriteBufs); |
|---|
| 1483 | 1485 | else |
|---|
| 1484 | 1486 | numWriteBufs = ints[1]; |
|---|
| 1485 | | - /* fall through */ |
|---|
| 1487 | + fallthrough; |
|---|
| 1486 | 1488 | case 1: |
|---|
| 1487 | 1489 | if ((size = ints[2]) < 256) /* check for small buffer specs */ |
|---|
| 1488 | 1490 | size <<= 10 ; |
|---|