gf2k.c (07b188ab773e183871e57b33ae37bf635c9f12ba) gf2k.c (4e57b6817880946a3a78d5d8cad1ace363f7e449)
1/*
2 * $Id: gf2k.c,v 1.19 2002/01/22 20:27:43 vojtech Exp $
3 *
4 * Copyright (c) 1998-2001 Vojtech Pavlik
5 */
6
7/*
8 * Genius Flight 2000 joystick driver for Linux

--- 21 unchanged lines hidden (view full) ---

30
31#include <linux/delay.h>
32#include <linux/kernel.h>
33#include <linux/slab.h>
34#include <linux/module.h>
35#include <linux/init.h>
36#include <linux/input.h>
37#include <linux/gameport.h>
1/*
2 * $Id: gf2k.c,v 1.19 2002/01/22 20:27:43 vojtech Exp $
3 *
4 * Copyright (c) 1998-2001 Vojtech Pavlik
5 */
6
7/*
8 * Genius Flight 2000 joystick driver for Linux

--- 21 unchanged lines hidden (view full) ---

30
31#include <linux/delay.h>
32#include <linux/kernel.h>
33#include <linux/slab.h>
34#include <linux/module.h>
35#include <linux/init.h>
36#include <linux/input.h>
37#include <linux/gameport.h>
38#include <linux/jiffies.h>
38
39#define DRIVER_DESC "Genius Flight 2000 joystick driver"
40
41MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
42MODULE_DESCRIPTION(DRIVER_DESC);
43MODULE_LICENSE("GPL");
44
45#define GF2K_START 400 /* The time we wait for the first bit [400 us] */

--- 340 unchanged lines hidden ---
39
40#define DRIVER_DESC "Genius Flight 2000 joystick driver"
41
42MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
43MODULE_DESCRIPTION(DRIVER_DESC);
44MODULE_LICENSE("GPL");
45
46#define GF2K_START 400 /* The time we wait for the first bit [400 us] */

--- 340 unchanged lines hidden ---