diff options
| author | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2012-10-19 15:19:19 -0400 |
|---|---|---|
| committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2012-10-19 15:19:19 -0400 |
| commit | e05dacd71db0a5da7c1a44bcaab2a8a240b9c233 (patch) | |
| tree | 31382cf1c7d62c03126448affb2fc86e8c4aaa8b /include/uapi/linux/hidraw.h | |
| parent | 3ab0b83bf6a1e834f4b884150d8012990c75d25d (diff) | |
| parent | ddffeb8c4d0331609ef2581d84de4d763607bd37 (diff) | |
Merge commit 'v3.7-rc1' into stable/for-linus-3.7
* commit 'v3.7-rc1': (10892 commits)
Linux 3.7-rc1
x86, boot: Explicitly include autoconf.h for hostprogs
perf: Fix UAPI fallout
ARM: config: make sure that platforms are ordered by option string
ARM: config: sort select statements alphanumerically
UAPI: (Scripted) Disintegrate include/linux/byteorder
UAPI: (Scripted) Disintegrate include/linux
UAPI: Unexport linux/blk_types.h
UAPI: Unexport part of linux/ppp-comp.h
perf: Handle new rbtree implementation
procfs: don't need a PATH_MAX allocation to hold a string representation of an int
vfs: embed struct filename inside of names_cache allocation if possible
audit: make audit_inode take struct filename
vfs: make path_openat take a struct filename pointer
vfs: turn do_path_lookup into wrapper around struct filename variant
audit: allow audit code to satisfy getname requests from its names_list
vfs: define struct filename and have getname() return it
btrfs: Fix compilation with user namespace support enabled
userns: Fix posix_acl_file_xattr_userns gid conversion
userns: Properly print bluetooth socket uids
...
Diffstat (limited to 'include/uapi/linux/hidraw.h')
| -rw-r--r-- | include/uapi/linux/hidraw.h | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/include/uapi/linux/hidraw.h b/include/uapi/linux/hidraw.h new file mode 100644 index 000000000000..f5b732979a7c --- /dev/null +++ b/include/uapi/linux/hidraw.h | |||
| @@ -0,0 +1,50 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2007 Jiri Kosina | ||
| 3 | */ | ||
| 4 | /* | ||
| 5 | * This program is free software; you can redistribute it and/or modify it | ||
| 6 | * under the terms and conditions of the GNU General Public License, | ||
| 7 | * version 2, as published by the Free Software Foundation. | ||
| 8 | * | ||
| 9 | * You should have received a copy of the GNU General Public License along with | ||
| 10 | * this program; if not, write to the Free Software Foundation, Inc., | ||
| 11 | * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. | ||
| 12 | */ | ||
| 13 | #ifndef _UAPI_HIDRAW_H | ||
| 14 | #define _UAPI_HIDRAW_H | ||
| 15 | |||
| 16 | |||
| 17 | |||
| 18 | #include <linux/hid.h> | ||
| 19 | #include <linux/types.h> | ||
| 20 | |||
| 21 | struct hidraw_report_descriptor { | ||
| 22 | __u32 size; | ||
| 23 | __u8 value[HID_MAX_DESCRIPTOR_SIZE]; | ||
| 24 | }; | ||
| 25 | |||
| 26 | struct hidraw_devinfo { | ||
| 27 | __u32 bustype; | ||
| 28 | __s16 vendor; | ||
| 29 | __s16 product; | ||
| 30 | }; | ||
| 31 | |||
| 32 | /* ioctl interface */ | ||
| 33 | #define HIDIOCGRDESCSIZE _IOR('H', 0x01, int) | ||
| 34 | #define HIDIOCGRDESC _IOR('H', 0x02, struct hidraw_report_descriptor) | ||
| 35 | #define HIDIOCGRAWINFO _IOR('H', 0x03, struct hidraw_devinfo) | ||
| 36 | #define HIDIOCGRAWNAME(len) _IOC(_IOC_READ, 'H', 0x04, len) | ||
| 37 | #define HIDIOCGRAWPHYS(len) _IOC(_IOC_READ, 'H', 0x05, len) | ||
| 38 | /* The first byte of SFEATURE and GFEATURE is the report number */ | ||
| 39 | #define HIDIOCSFEATURE(len) _IOC(_IOC_WRITE|_IOC_READ, 'H', 0x06, len) | ||
| 40 | #define HIDIOCGFEATURE(len) _IOC(_IOC_WRITE|_IOC_READ, 'H', 0x07, len) | ||
| 41 | |||
| 42 | #define HIDRAW_FIRST_MINOR 0 | ||
| 43 | #define HIDRAW_MAX_DEVICES 64 | ||
| 44 | /* number of reports to buffer */ | ||
| 45 | #define HIDRAW_BUFFER_SIZE 64 | ||
| 46 | |||
| 47 | |||
| 48 | /* kernel-only API declarations */ | ||
| 49 | |||
| 50 | #endif /* _UAPI_HIDRAW_H */ | ||
