mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-23 05:56:14 -04:00
drm/i915: Improve i915_inject_probe_error macro
On non-debug builds we were not using i915 param and thus we may cause "unused variable" warning/error if caller was not using i915 elsewhere. Let compiler see this param. Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com> Cc: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Link: https://patchwork.freedesktop.org/patch/msgid/20191212121903.72524-1-michal.wajdeczko@intel.com
This commit is contained in:
committed by
Chris Wilson
parent
686c7c35ab
commit
b58a8813ee
@@ -69,7 +69,7 @@ bool i915_error_injected(void);
|
||||
|
||||
#else
|
||||
|
||||
#define i915_inject_probe_error(_i915, _err) 0
|
||||
#define i915_inject_probe_error(i915, e) ({ BUILD_BUG_ON_INVALID(i915); 0; })
|
||||
#define i915_error_injected() false
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user