From: Daniel Vetter Date: Mon, 11 Aug 2014 13:57:57 +0000 (+0200) Subject: drm/i915: WARN if module opt sanitization goes out of order X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=bd84b1e995918ad83bdba5d5be1bef901e169f19;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git drm/i915: WARN if module opt sanitization goes out of order Depending upon one module option to be sanitized (through USES_PPGTT) for the other is a bit too fragile for my taste. At least WARN about this. Cc: Ben Widawsky Cc: Damien Lespiau Cc: Oscar Mateo Signed-off-by: Daniel Vetter --- diff --git a/drivers/gpu/drm/i915/intel_lrc.c b/drivers/gpu/drm/i915/intel_lrc.c index 21f7f1cce86e..44721292eb77 100644 --- a/drivers/gpu/drm/i915/intel_lrc.c +++ b/drivers/gpu/drm/i915/intel_lrc.c @@ -43,6 +43,8 @@ int intel_sanitize_enable_execlists(struct drm_device *dev, int enable_execlists) { + WARN_ON(i915.enable_ppgtt == -1); + if (enable_execlists == 0) return 0;