Re: [PATCH] remoteproc: uclass: Clean up a return

2023-08-08 Thread Tom Rini
On Wed, Jul 26, 2023 at 10:00:33AM +0300, Dan Carpenter wrote: > 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 > Reviewed-by: Simon Glass Applied to u-boot/next, thanks! --

Re: [PATCH] remoteproc: uclass: Clean up a return

2023-07-26 Thread Simon Glass
On Wed, 26 Jul 2023 at 10:50, Dan Carpenter wrote: > > 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 > --- > drivers/remoteproc/rproc-uclass.c | 2 +- > 1 file changed, 1

[PATCH] remoteproc: uclass: Clean up a return

2023-07-26 Thread Dan Carpenter
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 --- drivers/remoteproc/rproc-uclass.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git