]> git.karo-electronics.de Git - linux-beck.git/commitdiff
drm/amd/scheduler: Mark amdgpu_sched_ops const
authorNils Wallménius <nils.wallmenius@gmail.com>
Sun, 10 Apr 2016 14:30:00 +0000 (16:30 +0200)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 5 May 2016 00:20:05 +0000 (20:20 -0400)
This marks the struct amdgpu_sched_ops const and
adjusts amd_sched_init to take a const pointer
for the ops param. The ops member of
struct amd_gpu_scheduler is also changed to const.

Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Nils Wallménius <nils.wallmenius@gmail.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu.h
drivers/gpu/drm/amd/amdgpu/amdgpu_job.c
drivers/gpu/drm/amd/scheduler/gpu_scheduler.c
drivers/gpu/drm/amd/scheduler/gpu_scheduler.h

index 5d05b5d67bbd6beb5faf47d626ea9c263d8d62e4..660213a1682a874940d2889f0883f4bf06596135 100644 (file)
@@ -748,7 +748,7 @@ enum amdgpu_ring_type {
        AMDGPU_RING_TYPE_VCE
 };
 
-extern struct amd_sched_backend_ops amdgpu_sched_ops;
+extern const struct amd_sched_backend_ops amdgpu_sched_ops;
 
 int amdgpu_job_alloc(struct amdgpu_device *adev, unsigned num_ibs,
                     struct amdgpu_job **job);
index a052ac2b131d503650804353ad2496b2d6ece2b0..4eea2a18d8bb7c014cbf19617989301eabb4f2b7 100644 (file)
@@ -198,7 +198,7 @@ err:
        return fence;
 }
 
-struct amd_sched_backend_ops amdgpu_sched_ops = {
+const struct amd_sched_backend_ops amdgpu_sched_ops = {
        .dependency = amdgpu_job_dependency,
        .run_job = amdgpu_job_run,
        .begin_job = amd_sched_job_begin,
index 639c70de217ce4cdc9fbb4600d5c4edc38e6113b..c16248cee7799221799c15a1dc707c83fd2b295f 100644 (file)
@@ -530,7 +530,7 @@ static int amd_sched_main(void *param)
  * Return 0 on success, otherwise error code.
 */
 int amd_sched_init(struct amd_gpu_scheduler *sched,
-                  struct amd_sched_backend_ops *ops,
+                  const struct amd_sched_backend_ops *ops,
                   unsigned hw_submission, long timeout, const char *name)
 {
        int i;
index 95ebfd069690612ed231061eac3e837ed3becbf0..169f70fe949c8d4d0a2005edcdf03efba582fb66 100644 (file)
@@ -123,7 +123,7 @@ enum amd_sched_priority {
  * One scheduler is implemented for each hardware ring
 */
 struct amd_gpu_scheduler {
-       struct amd_sched_backend_ops    *ops;
+       const struct amd_sched_backend_ops      *ops;
        uint32_t                        hw_submission_limit;
        long                            timeout;
        const char                      *name;
@@ -137,7 +137,7 @@ struct amd_gpu_scheduler {
 };
 
 int amd_sched_init(struct amd_gpu_scheduler *sched,
-                  struct amd_sched_backend_ops *ops,
+                  const struct amd_sched_backend_ops *ops,
                   uint32_t hw_submission, long timeout, const char *name);
 void amd_sched_fini(struct amd_gpu_scheduler *sched);