diff options
author | Dave Airlie <airlied@redhat.com> | 2018-12-05 17:09:33 -0500 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2018-12-05 18:17:51 -0500 |
commit | 467e8a516dcf922d1ea343cebb0e751f81f0dca3 (patch) | |
tree | c22b6d971e922223286a4a181d6701c7d32e523d /fs/sysfs/file.c | |
parent | 818182dd1097fdc492aaef9b08755ea13274352d (diff) | |
parent | 4377d4e0d3d511986033ba7b4182d5a80b7f9ea2 (diff) |
Merge tag 'drm-intel-next-2018-12-04' of git://anongit.freedesktop.org/drm/drm-intel into drm-next
Final drm/i915 changes for v4.21:
- ICL DSI video mode enabling (Madhav, Vandita, Jani, Imre)
- eDP sink count fix (José)
- PSR fixes (José)
- DRM DP helper and i915 DSC enabling (Manasi, Gaurav, Anusha)
- DP FEC enabling (Anusha)
- SKL+ watermark/ddb programming improvements (Ville)
- Pixel format fixes (Ville)
- Selftest updates (Chris, Tvrtko)
- GT and engine workaround improvements (Tvrtko)
Signed-off-by: Dave Airlie <airlied@redhat.com>
From: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/87va496uoe.fsf@intel.com
Diffstat (limited to 'fs/sysfs/file.c')
-rw-r--r-- | fs/sysfs/file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/sysfs/file.c b/fs/sysfs/file.c index 0a7252aecfa5..bb71db63c99c 100644 --- a/fs/sysfs/file.c +++ b/fs/sysfs/file.c | |||
@@ -334,7 +334,7 @@ int sysfs_create_file_ns(struct kobject *kobj, const struct attribute *attr, | |||
334 | } | 334 | } |
335 | EXPORT_SYMBOL_GPL(sysfs_create_file_ns); | 335 | EXPORT_SYMBOL_GPL(sysfs_create_file_ns); |
336 | 336 | ||
337 | int sysfs_create_files(struct kobject *kobj, const struct attribute **ptr) | 337 | int sysfs_create_files(struct kobject *kobj, const struct attribute * const *ptr) |
338 | { | 338 | { |
339 | int err = 0; | 339 | int err = 0; |
340 | int i; | 340 | int i; |
@@ -493,7 +493,7 @@ bool sysfs_remove_file_self(struct kobject *kobj, const struct attribute *attr) | |||
493 | return ret; | 493 | return ret; |
494 | } | 494 | } |
495 | 495 | ||
496 | void sysfs_remove_files(struct kobject *kobj, const struct attribute **ptr) | 496 | void sysfs_remove_files(struct kobject *kobj, const struct attribute * const *ptr) |
497 | { | 497 | { |
498 | int i; | 498 | int i; |
499 | for (i = 0; ptr[i]; i++) | 499 | for (i = 0; ptr[i]; i++) |