diff options
author | Chris Wilson <[email protected]> | 2017-11-20 13:26:06 +0000 |
---|---|---|
committer | Chris Wilson <[email protected]> | 2017-11-20 16:50:27 +0000 |
commit | 2a6c4241fcc3d942a0a6b09e445561d099fa7884 (patch) | |
tree | 3f0550e5683c83745ac88ccdf10c118860a15e5f | |
parent | 9f9b2792b6d38fbc8028f31b41ebd38a3f28a401 (diff) |
drm/i915/selftest: Make guc clients static
Make the private array used for stashing test clients static, to silence
sparse.
References: 55bd6bd75717 ("drm/i915/selftests: Add a GuC doorbells selftest")
Signed-off-by: Chris Wilson <[email protected]>
Cc: Michel Thierry <[email protected]>
Cc: Michal Wajdeczko <[email protected]>
Cc: Daniele Ceraolo Spurio <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
Reviewed-by: Michel Thierry <[email protected]>
-rw-r--r-- | drivers/gpu/drm/i915/selftests/intel_guc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/selftests/intel_guc.c b/drivers/gpu/drm/i915/selftests/intel_guc.c index f10029e18820..f1baeda8b4a8 100644 --- a/drivers/gpu/drm/i915/selftests/intel_guc.c +++ b/drivers/gpu/drm/i915/selftests/intel_guc.c @@ -27,7 +27,7 @@ /* max doorbell number + negative test for each client type */ #define ATTEMPTS (GUC_NUM_DOORBELLS + GUC_CLIENT_PRIORITY_NUM) -struct intel_guc_client *clients[ATTEMPTS]; +static struct intel_guc_client *clients[ATTEMPTS]; static bool available_dbs(struct intel_guc *guc, u32 priority) { |