diff options
Diffstat (limited to 'drivers/input/joystick/amijoy.c')
| -rw-r--r-- | drivers/input/joystick/amijoy.c | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/input/joystick/amijoy.c b/drivers/input/joystick/amijoy.c index 0bc86204213..c65b5fa69f1 100644 --- a/drivers/input/joystick/amijoy.c +++ b/drivers/input/joystick/amijoy.c @@ -35,7 +35,6 @@  #include <linux/interrupt.h>  #include <linux/mutex.h> -#include <asm/system.h>  #include <asm/amigahw.h>  #include <asm/amigaints.h> @@ -108,6 +107,9 @@ static int __init amijoy_init(void)  	int i, j;  	int err; +	if (!MACH_IS_AMIGA) +		return -ENODEV; +  	for (i = 0; i < 2; i++) {  		if (!amijoy[i])  			continue;  | 
