| 379 | } |
| 380 | |
| 381 | static struct inputdevice_functions *getidf(int devnum) |
| 382 | { |
| 383 | int type = gettype(devnum); |
| 384 | if (type < 0) |
| 385 | return NULL; |
| 386 | return &idev[type]; |
| 387 | } |
| 388 | |
| 389 | const struct inputevent *inputdevice_get_eventinfo(int evt) |
| 390 | { |
no test coverage detected