Re: [PATCH] cmd: Fix an error code in cmd_mux_find()

2023-08-08 Thread Tom Rini
On Tue, Jul 25, 2023 at 09:50:08AM +0300, Dan Carpenter wrote: > This returns the wrong variable. It ends up returning NULL when it was > suppose to return an error pointer. > > Signed-off-by: Dan Carpenter Applied to u-boot/next, thanks! -- Tom signature.asc Description: PGP signature

[PATCH] cmd: Fix an error code in cmd_mux_find()

2023-07-25 Thread Dan Carpenter
This returns the wrong variable. It ends up returning NULL when it was suppose to return an error pointer. Signed-off-by: Dan Carpenter --- cmd/mux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/mux.c b/cmd/mux.c index 833266f08b1e..c75907af7726 100644 --- a/cmd/mux.c