diff options
| author | Dave Airlie <airlied@redhat.com> | 2014-09-15 21:28:52 -0400 |
|---|---|---|
| committer | Dave Airlie <airlied@redhat.com> | 2014-09-15 21:38:04 -0400 |
| commit | b2efb3f0a1db62aff5e824125785ec6731143b6d (patch) | |
| tree | 67510cec69e18e55d82bed803428b2a5027d92bb /include/uapi | |
| parent | 4ac073640a528662a7c072a30e92e70ce00ded33 (diff) | |
| parent | 9e82bf014195d6f0054982c463575cdce24292be (diff) | |
drm: backmerge tag 'v3.17-rc5' into drm-next
This is requested to get the fixes for intel and radeon into the
same tree for future development work.
i915_display.c: fix missing dev_priv conflict.
Diffstat (limited to 'include/uapi')
| -rw-r--r-- | include/uapi/linux/Kbuild | 2 | ||||
| -rw-r--r-- | include/uapi/linux/input.h | 1 | ||||
| -rw-r--r-- | include/uapi/linux/usbip.h | 26 | ||||
| -rw-r--r-- | include/uapi/linux/xattr.h | 2 |
4 files changed, 30 insertions, 1 deletions
diff --git a/include/uapi/linux/Kbuild b/include/uapi/linux/Kbuild index 24e9033f8b3f..be88166349a1 100644 --- a/include/uapi/linux/Kbuild +++ b/include/uapi/linux/Kbuild | |||
| @@ -240,6 +240,7 @@ header-y += matroxfb.h | |||
| 240 | header-y += mdio.h | 240 | header-y += mdio.h |
| 241 | header-y += media.h | 241 | header-y += media.h |
| 242 | header-y += mei.h | 242 | header-y += mei.h |
| 243 | header-y += memfd.h | ||
| 243 | header-y += mempolicy.h | 244 | header-y += mempolicy.h |
| 244 | header-y += meye.h | 245 | header-y += meye.h |
| 245 | header-y += mic_common.h | 246 | header-y += mic_common.h |
| @@ -395,6 +396,7 @@ header-y += un.h | |||
| 395 | header-y += unistd.h | 396 | header-y += unistd.h |
| 396 | header-y += unix_diag.h | 397 | header-y += unix_diag.h |
| 397 | header-y += usbdevice_fs.h | 398 | header-y += usbdevice_fs.h |
| 399 | header-y += usbip.h | ||
| 398 | header-y += utime.h | 400 | header-y += utime.h |
| 399 | header-y += utsname.h | 401 | header-y += utsname.h |
| 400 | header-y += uuid.h | 402 | header-y += uuid.h |
diff --git a/include/uapi/linux/input.h b/include/uapi/linux/input.h index 19df18c9b8be..1874ebe9ac1e 100644 --- a/include/uapi/linux/input.h +++ b/include/uapi/linux/input.h | |||
| @@ -165,6 +165,7 @@ struct input_keymap_entry { | |||
| 165 | #define INPUT_PROP_BUTTONPAD 0x02 /* has button(s) under pad */ | 165 | #define INPUT_PROP_BUTTONPAD 0x02 /* has button(s) under pad */ |
| 166 | #define INPUT_PROP_SEMI_MT 0x03 /* touch rectangle only */ | 166 | #define INPUT_PROP_SEMI_MT 0x03 /* touch rectangle only */ |
| 167 | #define INPUT_PROP_TOPBUTTONPAD 0x04 /* softbuttons at top of pad */ | 167 | #define INPUT_PROP_TOPBUTTONPAD 0x04 /* softbuttons at top of pad */ |
| 168 | #define INPUT_PROP_POINTING_STICK 0x05 /* is a pointing stick */ | ||
| 168 | 169 | ||
| 169 | #define INPUT_PROP_MAX 0x1f | 170 | #define INPUT_PROP_MAX 0x1f |
| 170 | #define INPUT_PROP_CNT (INPUT_PROP_MAX + 1) | 171 | #define INPUT_PROP_CNT (INPUT_PROP_MAX + 1) |
diff --git a/include/uapi/linux/usbip.h b/include/uapi/linux/usbip.h new file mode 100644 index 000000000000..fa5db30ede36 --- /dev/null +++ b/include/uapi/linux/usbip.h | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | /* | ||
| 2 | * usbip.h | ||
| 3 | * | ||
| 4 | * USBIP uapi defines and function prototypes etc. | ||
| 5 | */ | ||
| 6 | |||
| 7 | #ifndef _UAPI_LINUX_USBIP_H | ||
| 8 | #define _UAPI_LINUX_USBIP_H | ||
| 9 | |||
| 10 | /* usbip device status - exported in usbip device sysfs status */ | ||
| 11 | enum usbip_device_status { | ||
| 12 | /* sdev is available. */ | ||
| 13 | SDEV_ST_AVAILABLE = 0x01, | ||
| 14 | /* sdev is now used. */ | ||
| 15 | SDEV_ST_USED, | ||
| 16 | /* sdev is unusable because of a fatal error. */ | ||
| 17 | SDEV_ST_ERROR, | ||
| 18 | |||
| 19 | /* vdev does not connect a remote device. */ | ||
| 20 | VDEV_ST_NULL, | ||
| 21 | /* vdev is used, but the USB address is not assigned yet */ | ||
| 22 | VDEV_ST_NOTASSIGNED, | ||
| 23 | VDEV_ST_USED, | ||
| 24 | VDEV_ST_ERROR | ||
| 25 | }; | ||
| 26 | #endif /* _UAPI_LINUX_USBIP_H */ | ||
diff --git a/include/uapi/linux/xattr.h b/include/uapi/linux/xattr.h index c38355c1f3c9..1590c49cae57 100644 --- a/include/uapi/linux/xattr.h +++ b/include/uapi/linux/xattr.h | |||
| @@ -13,7 +13,7 @@ | |||
| 13 | #ifndef _UAPI_LINUX_XATTR_H | 13 | #ifndef _UAPI_LINUX_XATTR_H |
| 14 | #define _UAPI_LINUX_XATTR_H | 14 | #define _UAPI_LINUX_XATTR_H |
| 15 | 15 | ||
| 16 | #ifdef __UAPI_DEF_XATTR | 16 | #if __UAPI_DEF_XATTR |
| 17 | #define __USE_KERNEL_XATTR_DEFS | 17 | #define __USE_KERNEL_XATTR_DEFS |
| 18 | 18 | ||
| 19 | #define XATTR_CREATE 0x1 /* set value, fail if attr already exists */ | 19 | #define XATTR_CREATE 0x1 /* set value, fail if attr already exists */ |
