/* * PS/2 mouse driver * * Copyright (c) 1999-2002 Vojtech Pavlik * Copyright (c) 2003-2004 Dmitry Torokhov *//* * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published by * the Free Software Foundation. */#include<linux/delay.h>#include<linux/module.h>#include<linux/moduleparam.h>#include<linux/slab.h>#include<linux/interrupt.h>#include<linux/input.h>#include<linux/serio.h>#include<linux/init.h>#include<linux/libps2.h>#include<linux/mutex.h>#include"psmouse.h"#include"synaptics.h"#include"logips2pp.h"#include"alps.h"#include"lifebook.h"#include"trackpoint.h"#define DRIVER_DESC "PS/2 mouse driver"MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");MODULE_DESCRIPTION(DRIVER_DESC);MODULE_LICEN