mirror of
https://github.com/torvalds/linux.git
synced 2024-12-27 13:22:23 +00:00
drm/i915: Enforce going back to none before changing CRC source
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>
This commit is contained in:
parent
cc3da175b0
commit
ae676fcd2a
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user