mirror of
https://xff.cz/git/u-boot/
synced 2025-09-02 01:02:19 +02:00
remoteproc: uclass: Clean up a return
We know that "pa" is non-NULL so it's nicer to just return zero instead of return !pa. This has no effect on runtime behavior. Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -689,7 +689,7 @@ static int alloc_vring(struct udevice *dev, struct fw_rsc_vdev *rsc, int i)
|
||||
debug("alloc_mem(%#x, %d): %p\n", size, order, pa);
|
||||
vring->da = (uintptr_t)pa;
|
||||
|
||||
return !pa;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int handle_vdev(struct udevice *dev, struct fw_rsc_vdev *rsc,
|
||||
|
Reference in New Issue
Block a user