diff options
author | YueHaibing <yuehaibing@huawei.com> | 2019-04-16 10:43:53 -0400 |
---|---|---|
committer | Qiang Yu <yuq825@gmail.com> | 2019-04-17 08:56:40 -0400 |
commit | d48ae1f0532cef3f57793ea4df551f695e63f788 (patch) | |
tree | 327031f69df95a57aa8d28e8415cac0d55c2507d /drivers/gpu/drm/lima/lima_sched.c | |
parent | b7147e9a15718f10148435983838bf30c9943ef4 (diff) |
drm/lima: Make lima_sched_ops static
Fix sparse warning:
drivers/gpu/drm/lima/lima_sched.c:356:36: warning:
symbol 'lima_sched_ops' was not declared. Should it be static?
Fixes: a1d2a6339961 ("drm/lima: driver for ARM Mali4xx GPUs")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: Qiang Yu <yuq825@gmail.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190416144353.34024-1-yuehaibing@huawei.com
Diffstat (limited to 'drivers/gpu/drm/lima/lima_sched.c')
-rw-r--r-- | drivers/gpu/drm/lima/lima_sched.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/lima/lima_sched.c b/drivers/gpu/drm/lima/lima_sched.c index e253d031fb3d..d53bd45f8d96 100644 --- a/drivers/gpu/drm/lima/lima_sched.c +++ b/drivers/gpu/drm/lima/lima_sched.c | |||
@@ -311,7 +311,7 @@ static void lima_sched_free_job(struct drm_sched_job *job) | |||
311 | kmem_cache_free(pipe->task_slab, task); | 311 | kmem_cache_free(pipe->task_slab, task); |
312 | } | 312 | } |
313 | 313 | ||
314 | const struct drm_sched_backend_ops lima_sched_ops = { | 314 | static const struct drm_sched_backend_ops lima_sched_ops = { |
315 | .dependency = lima_sched_dependency, | 315 | .dependency = lima_sched_dependency, |
316 | .run_job = lima_sched_run_job, | 316 | .run_job = lima_sched_run_job, |
317 | .timedout_job = lima_sched_timedout_job, | 317 | .timedout_job = lima_sched_timedout_job, |