|
Linux Kernel
3.7.1
|
#include <linux/errno.h>#include <linux/kernel.h>#include <linux/module.h>#include <linux/slab.h>#include <linux/input.h>#include <linux/serio.h>#include <linux/init.h>Go to the source code of this file.
Data Structures | |
| struct | tw |
Macros | |
| #define | DRIVER_DESC "Touchwindow serial touchscreen driver" |
| #define | TW_LENGTH 3 |
| #define | TW_MIN_XC 0 |
| #define | TW_MAX_XC 0xff |
| #define | TW_MIN_YC 0 |
| #define | TW_MAX_YC 0xff |
Functions | |
| MODULE_AUTHOR ("Rick Koch <[email protected]>") | |
| MODULE_DESCRIPTION (DRIVER_DESC) | |
| MODULE_LICENSE ("GPL") | |
| MODULE_DEVICE_TABLE (serio, tw_serio_ids) | |
| module_serio_driver (tw_drv) | |
Definition at line 32 of file touchwin.c.
| #define TW_LENGTH 3 |
Definition at line 42 of file touchwin.c.
| #define TW_MAX_XC 0xff |
Definition at line 45 of file touchwin.c.
| #define TW_MAX_YC 0xff |
Definition at line 47 of file touchwin.c.
| #define TW_MIN_XC 0 |
Definition at line 44 of file touchwin.c.
| #define TW_MIN_YC 0 |
Definition at line 46 of file touchwin.c.
| MODULE_AUTHOR | ( | "Rick Koch <[email protected]>" | ) |
| MODULE_DESCRIPTION | ( | DRIVER_DESC | ) |
| MODULE_DEVICE_TABLE | ( | serio | , |
| tw_serio_ids | |||
| ) |
| MODULE_LICENSE | ( | "GPL" | ) |
| module_serio_driver | ( | tw_drv | ) |
1.8.2