projects
/
platform
/
kernel
/
linux-exynos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cc3da17
)
drm/i915: Enforce going back to none before changing CRC source
author
Damien Lespiau
<damien.lespiau@intel.com>
Tue, 15 Oct 2013 17:55:32 +0000
(18:55 +0100)
committer
Daniel Vetter
<daniel.vetter@ffwll.ch>
Wed, 16 Oct 2013 11:32:11 +0000
(13:32 +0200)
This way we can have some init/fini code on those transitions.
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/i915_debugfs.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/i915/i915_debugfs.c
b/drivers/gpu/drm/i915/i915_debugfs.c
index
8c750d5
..
787c50d
100644
(file)
--- a/
drivers/gpu/drm/i915/i915_debugfs.c
+++ b/
drivers/gpu/drm/i915/i915_debugfs.c
@@
-1816,6
+1816,10
@@
static int pipe_crc_set_source(struct drm_device *dev, enum pipe pipe,
if (pipe_crc->source == source)
return 0;
+ /* forbid changing the source without going back to 'none' */
+ if (pipe_crc->source && source)
+ return -EINVAL;
+
pipe_crc->source = source;
switch (source) {