mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-28 01:21:58 +00:00
gpu: host1x: Use not explicitly sized types
The number of words and the offset in a gather don't need to be explicitly sized, so make them unsigned int instead. Reviewed-by: Dmitry Osipenko <digetx@gmail.com> Tested-by: Dmitry Osipenko <digetx@gmail.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
This commit is contained in:
parent
06490bb99e
commit
326bbd79fd
3 changed files with 10 additions and 9 deletions
|
@ -96,13 +96,14 @@ void host1x_job_put(struct host1x_job *job)
|
||||||
EXPORT_SYMBOL(host1x_job_put);
|
EXPORT_SYMBOL(host1x_job_put);
|
||||||
|
|
||||||
void host1x_job_add_gather(struct host1x_job *job, struct host1x_bo *bo,
|
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++;
|
job->num_gathers++;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(host1x_job_add_gather);
|
EXPORT_SYMBOL(host1x_job_add_gather);
|
||||||
|
|
|
@ -20,10 +20,10 @@
|
||||||
#define __HOST1X_JOB_H
|
#define __HOST1X_JOB_H
|
||||||
|
|
||||||
struct host1x_job_gather {
|
struct host1x_job_gather {
|
||||||
u32 words;
|
unsigned int words;
|
||||||
dma_addr_t base;
|
dma_addr_t base;
|
||||||
struct host1x_bo *bo;
|
struct host1x_bo *bo;
|
||||||
u32 offset;
|
unsigned int offset;
|
||||||
bool handled;
|
bool handled;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -251,8 +251,8 @@ struct host1x_job {
|
||||||
|
|
||||||
struct host1x_job *host1x_job_alloc(struct host1x_channel *ch,
|
struct host1x_job *host1x_job_alloc(struct host1x_channel *ch,
|
||||||
u32 num_cmdbufs, u32 num_relocs);
|
u32 num_cmdbufs, u32 num_relocs);
|
||||||
void host1x_job_add_gather(struct host1x_job *job, struct host1x_bo *mem_id,
|
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 *host1x_job_get(struct host1x_job *job);
|
struct host1x_job *host1x_job_get(struct host1x_job *job);
|
||||||
void host1x_job_put(struct host1x_job *job);
|
void host1x_job_put(struct host1x_job *job);
|
||||||
int host1x_job_pin(struct host1x_job *job, struct device *dev);
|
int host1x_job_pin(struct host1x_job *job, struct device *dev);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue