rpcmouse.c (7a9787e1eba95a166265e6a260cf30af04ef0a99) | rpcmouse.c (997302259f386bca8fe1db67c50296ca426c438f) |
---|---|
1/* 2 * Acorn RiscPC mouse driver for Linux/ARM 3 * 4 * Copyright (c) 2000-2002 Vojtech Pavlik 5 * Copyright (C) 1996-2002 Russell King 6 * 7 */ 8 --- 8 unchanged lines hidden (view full) --- 17 * the complete state and then work out if something has changed. 18 */ 19 20#include <linux/module.h> 21#include <linux/ptrace.h> 22#include <linux/interrupt.h> 23#include <linux/init.h> 24#include <linux/input.h> | 1/* 2 * Acorn RiscPC mouse driver for Linux/ARM 3 * 4 * Copyright (c) 2000-2002 Vojtech Pavlik 5 * Copyright (C) 1996-2002 Russell King 6 * 7 */ 8 --- 8 unchanged lines hidden (view full) --- 17 * the complete state and then work out if something has changed. 18 */ 19 20#include <linux/module.h> 21#include <linux/ptrace.h> 22#include <linux/interrupt.h> 23#include <linux/init.h> 24#include <linux/input.h> |
25#include <linux/io.h> |
|
25 26#include <mach/hardware.h> 27#include <asm/irq.h> | 26 27#include <mach/hardware.h> 28#include <asm/irq.h> |
28#include <asm/io.h> | |
29#include <asm/hardware/iomd.h> 30 31MODULE_AUTHOR("Vojtech Pavlik, Russell King"); 32MODULE_DESCRIPTION("Acorn RiscPC mouse driver"); 33MODULE_LICENSE("GPL"); 34 35static short rpcmouse_lastx, rpcmouse_lasty; 36static struct input_dev *rpcmouse_dev; --- 80 unchanged lines hidden --- | 29#include <asm/hardware/iomd.h> 30 31MODULE_AUTHOR("Vojtech Pavlik, Russell King"); 32MODULE_DESCRIPTION("Acorn RiscPC mouse driver"); 33MODULE_LICENSE("GPL"); 34 35static short rpcmouse_lastx, rpcmouse_lasty; 36static struct input_dev *rpcmouse_dev; --- 80 unchanged lines hidden --- |