mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
ptp: ocp: Fix a couple NULL vs IS_ERR() checks
The ptp_ocp_get_mem() function does not return NULL, it returns error
pointers.
Fixes: 773bda9649
("ptp: ocp: Expose various resources on the timecard.")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
0fa68da72c
commit
c7521d3aa2
1 changed files with 5 additions and 4 deletions
|
@ -1304,10 +1304,11 @@ ptp_ocp_register_ext(struct ptp_ocp *bp, struct ocp_resource *r)
|
|||
if (!ext)
|
||||
return -ENOMEM;
|
||||
|
||||
err = -EINVAL;
|
||||
ext->mem = ptp_ocp_get_mem(bp, r);
|
||||
if (!ext->mem)
|
||||
if (IS_ERR(ext->mem)) {
|
||||
err = PTR_ERR(ext->mem);
|
||||
goto out;
|
||||
}
|
||||
|
||||
ext->bp = bp;
|
||||
ext->info = r->extra;
|
||||
|
@ -1371,8 +1372,8 @@ ptp_ocp_register_mem(struct ptp_ocp *bp, struct ocp_resource *r)
|
|||
void __iomem *mem;
|
||||
|
||||
mem = ptp_ocp_get_mem(bp, r);
|
||||
if (!mem)
|
||||
return -EINVAL;
|
||||
if (IS_ERR(mem))
|
||||
return PTR_ERR(mem);
|
||||
|
||||
bp_assign_entry(bp, r, mem);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue