diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2015-11-23 03:04:05 -0500 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2015-11-23 03:04:05 -0500 |
commit | 92907cbbef8625bb3998d1eb385fc88f23c97a3f (patch) | |
tree | 15626ff9287e37c3cb81c7286d6db5a7fd77c854 /include/linux/debugfs.h | |
parent | 15fbfccfe92c62ae8d1ecc647c44157ed01ac02e (diff) | |
parent | 1ec218373b8ebda821aec00bb156a9c94fad9cd4 (diff) |
Merge tag 'v4.4-rc2' into drm-intel-next-queued
Linux 4.4-rc2
Backmerge to get at
commit 1b0e3a049efe471c399674fd954500ce97438d30
Author: Imre Deak <imre.deak@intel.com>
Date: Thu Nov 5 23:04:11 2015 +0200
drm/i915/skl: disable display side power well support for now
so that we can proplery re-eanble skl power wells in -next.
Conflicts are just adjacent lines changed, except for intel_fbdev.c
where we need to interleave the changs. Nothing nefarious.
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Diffstat (limited to 'include/linux/debugfs.h')
-rw-r--r-- | include/linux/debugfs.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/linux/debugfs.h b/include/linux/debugfs.h index 9beb636b97eb..19c066dce1da 100644 --- a/include/linux/debugfs.h +++ b/include/linux/debugfs.h | |||
@@ -79,6 +79,8 @@ struct dentry *debugfs_create_u32(const char *name, umode_t mode, | |||
79 | struct dentry *parent, u32 *value); | 79 | struct dentry *parent, u32 *value); |
80 | struct dentry *debugfs_create_u64(const char *name, umode_t mode, | 80 | struct dentry *debugfs_create_u64(const char *name, umode_t mode, |
81 | struct dentry *parent, u64 *value); | 81 | struct dentry *parent, u64 *value); |
82 | struct dentry *debugfs_create_ulong(const char *name, umode_t mode, | ||
83 | struct dentry *parent, unsigned long *value); | ||
82 | struct dentry *debugfs_create_x8(const char *name, umode_t mode, | 84 | struct dentry *debugfs_create_x8(const char *name, umode_t mode, |
83 | struct dentry *parent, u8 *value); | 85 | struct dentry *parent, u8 *value); |
84 | struct dentry *debugfs_create_x16(const char *name, umode_t mode, | 86 | struct dentry *debugfs_create_x16(const char *name, umode_t mode, |
@@ -92,7 +94,7 @@ struct dentry *debugfs_create_size_t(const char *name, umode_t mode, | |||
92 | struct dentry *debugfs_create_atomic_t(const char *name, umode_t mode, | 94 | struct dentry *debugfs_create_atomic_t(const char *name, umode_t mode, |
93 | struct dentry *parent, atomic_t *value); | 95 | struct dentry *parent, atomic_t *value); |
94 | struct dentry *debugfs_create_bool(const char *name, umode_t mode, | 96 | struct dentry *debugfs_create_bool(const char *name, umode_t mode, |
95 | struct dentry *parent, u32 *value); | 97 | struct dentry *parent, bool *value); |
96 | 98 | ||
97 | struct dentry *debugfs_create_blob(const char *name, umode_t mode, | 99 | struct dentry *debugfs_create_blob(const char *name, umode_t mode, |
98 | struct dentry *parent, | 100 | struct dentry *parent, |
@@ -243,7 +245,7 @@ static inline struct dentry *debugfs_create_atomic_t(const char *name, umode_t m | |||
243 | 245 | ||
244 | static inline struct dentry *debugfs_create_bool(const char *name, umode_t mode, | 246 | static inline struct dentry *debugfs_create_bool(const char *name, umode_t mode, |
245 | struct dentry *parent, | 247 | struct dentry *parent, |
246 | u32 *value) | 248 | bool *value) |
247 | { | 249 | { |
248 | return ERR_PTR(-ENODEV); | 250 | return ERR_PTR(-ENODEV); |
249 | } | 251 | } |