lightning.c (7a9787e1eba95a166265e6a260cf30af04ef0a99) lightning.c (5a0e3ad6af8660be21ca98a971cd00f331318c05)
1/*
2 * Copyright (c) 1998-2001 Vojtech Pavlik
3 */
4
5/*
6 * PDPI Lightning 4 gamecard driver for Linux.
7 */
8

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

29#include <asm/io.h>
30#include <linux/delay.h>
31#include <linux/errno.h>
32#include <linux/ioport.h>
33#include <linux/kernel.h>
34#include <linux/module.h>
35#include <linux/init.h>
36#include <linux/gameport.h>
1/*
2 * Copyright (c) 1998-2001 Vojtech Pavlik
3 */
4
5/*
6 * PDPI Lightning 4 gamecard driver for Linux.
7 */
8

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

29#include <asm/io.h>
30#include <linux/delay.h>
31#include <linux/errno.h>
32#include <linux/ioport.h>
33#include <linux/kernel.h>
34#include <linux/module.h>
35#include <linux/init.h>
36#include <linux/gameport.h>
37#include <linux/slab.h>
38
39#define L4_PORT 0x201
40#define L4_SELECT_ANALOG 0xa4
41#define L4_SELECT_DIGITAL 0xa5
42#define L4_SELECT_SECONDARY 0xa6
43#define L4_CMD_ID 0x80
44#define L4_CMD_GETCAL 0x92
45#define L4_CMD_SETCAL 0x93

--- 297 unchanged lines hidden ---
37
38#define L4_PORT 0x201
39#define L4_SELECT_ANALOG 0xa4
40#define L4_SELECT_DIGITAL 0xa5
41#define L4_SELECT_SECONDARY 0xa6
42#define L4_CMD_ID 0x80
43#define L4_CMD_GETCAL 0x92
44#define L4_CMD_SETCAL 0x93

--- 297 unchanged lines hidden ---