mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 22:50:57 +07:00
gpu: host1x: returning success instead of -ENOMEM
There is a mistake here so it returns PTR_ERR(NULL) which is success instead of -ENOMEM. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
This commit is contained in:
parent
f5fda676e9
commit
745cecc07c
@ -466,9 +466,8 @@ static inline int copy_gathers(struct host1x_job *job, struct device *dev)
|
||||
&job->gather_copy,
|
||||
GFP_KERNEL);
|
||||
if (!job->gather_copy_mapped) {
|
||||
int err = PTR_ERR(job->gather_copy_mapped);
|
||||
job->gather_copy_mapped = NULL;
|
||||
return err;
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
job->gather_copy_size = size;
|
||||
|
Loading…
Reference in New Issue
Block a user