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.
This commit is contained in:
@@ -240,6 +240,7 @@ header-y += matroxfb.h
|
||||
header-y += mdio.h
|
||||
header-y += media.h
|
||||
header-y += mei.h
|
||||
header-y += memfd.h
|
||||
header-y += mempolicy.h
|
||||
header-y += meye.h
|
||||
header-y += mic_common.h
|
||||
@@ -395,6 +396,7 @@ header-y += un.h
|
||||
header-y += unistd.h
|
||||
header-y += unix_diag.h
|
||||
header-y += usbdevice_fs.h
|
||||
header-y += usbip.h
|
||||
header-y += utime.h
|
||||
header-y += utsname.h
|
||||
header-y += uuid.h
|
||||
|
||||
@@ -165,6 +165,7 @@ struct input_keymap_entry {
|
||||
#define INPUT_PROP_BUTTONPAD 0x02 /* has button(s) under pad */
|
||||
#define INPUT_PROP_SEMI_MT 0x03 /* touch rectangle only */
|
||||
#define INPUT_PROP_TOPBUTTONPAD 0x04 /* softbuttons at top of pad */
|
||||
#define INPUT_PROP_POINTING_STICK 0x05 /* is a pointing stick */
|
||||
|
||||
#define INPUT_PROP_MAX 0x1f
|
||||
#define INPUT_PROP_CNT (INPUT_PROP_MAX + 1)
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
/*
|
||||
* usbip.h
|
||||
*
|
||||
* USBIP uapi defines and function prototypes etc.
|
||||
*/
|
||||
|
||||
#ifndef _UAPI_LINUX_USBIP_H
|
||||
#define _UAPI_LINUX_USBIP_H
|
||||
|
||||
/* usbip device status - exported in usbip device sysfs status */
|
||||
enum usbip_device_status {
|
||||
/* sdev is available. */
|
||||
SDEV_ST_AVAILABLE = 0x01,
|
||||
/* sdev is now used. */
|
||||
SDEV_ST_USED,
|
||||
/* sdev is unusable because of a fatal error. */
|
||||
SDEV_ST_ERROR,
|
||||
|
||||
/* vdev does not connect a remote device. */
|
||||
VDEV_ST_NULL,
|
||||
/* vdev is used, but the USB address is not assigned yet */
|
||||
VDEV_ST_NOTASSIGNED,
|
||||
VDEV_ST_USED,
|
||||
VDEV_ST_ERROR
|
||||
};
|
||||
#endif /* _UAPI_LINUX_USBIP_H */
|
||||
@@ -13,7 +13,7 @@
|
||||
#ifndef _UAPI_LINUX_XATTR_H
|
||||
#define _UAPI_LINUX_XATTR_H
|
||||
|
||||
#ifdef __UAPI_DEF_XATTR
|
||||
#if __UAPI_DEF_XATTR
|
||||
#define __USE_KERNEL_XATTR_DEFS
|
||||
|
||||
#define XATTR_CREATE 0x1 /* set value, fail if attr already exists */
|
||||
|
||||
Reference in New Issue
Block a user