EXPORT_SYMBOL(host1x_job_put);
 
 void host1x_job_add_gather(struct host1x_job *job, struct host1x_bo *bo,
-                          u32 words, u32 offset)
+                          unsigned int words, unsigned int offset)
 {
-       struct host1x_job_gather *cur_gather = &job->gathers[job->num_gathers];
+       struct host1x_job_gather *gather = &job->gathers[job->num_gathers];
+
+       gather->words = words;
+       gather->bo = bo;
+       gather->offset = offset;
 
-       cur_gather->words = words;
-       cur_gather->bo = bo;
-       cur_gather->offset = offset;
        job->num_gathers++;
 }
 EXPORT_SYMBOL(host1x_job_add_gather);
 
 
 struct host1x_job *host1x_job_alloc(struct host1x_channel *ch,
                                    u32 num_cmdbufs, u32 num_relocs);
-void host1x_job_add_gather(struct host1x_job *job, struct host1x_bo *mem_id,
-                          u32 words, u32 offset);
+void host1x_job_add_gather(struct host1x_job *job, struct host1x_bo *bo,
+                          unsigned int words, unsigned int offset);
 struct host1x_job *host1x_job_get(struct host1x_job *job);
 void host1x_job_put(struct host1x_job *job);
 int host1x_job_pin(struct host1x_job *job, struct device *dev);