Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef _LINUX_ATARI_JOYSTICK_H |
| 3 | #define _LINUX_ATARI_JOYSTICK_H |
| 4 | |
| 5 | /* |
| 6 | * linux/include/linux/atari_joystick.h |
| 7 | * header file for Atari Joystick driver |
| 8 | * by Robert de Vries (robert@and.nl) on 19Jul93 |
| 9 | */ |
| 10 | |
| 11 | void atari_joystick_interrupt(char*); |
| 12 | int atari_joystick_init(void); |
| 13 | extern int atari_mouse_buttons; |
| 14 | |
| 15 | struct joystick_status { |
| 16 | char fire; |
| 17 | char dir; |
| 18 | int ready; |
| 19 | int active; |
| 20 | wait_queue_head_t wait; |
| 21 | }; |
| 22 | |
| 23 | #endif |