phy: ti: j721e-wiz: Set error code before goto

In j721e_wiz_probe the test for too many lanes jumps to the error exit
path without assigning an error code which could lead to calling code
silently ignoring the failure. Set the error code.

This issue was found by Smatch.

Signed-off-by: Andrew Goodbody <andrew.goodbody@linaro.org>
This commit is contained in:
Andrew Goodbody
2025-08-15 14:17:30 -06:00
committed by Tom Rini
parent 26d9bd1ccd
commit fc96c1de5b
+1
View File
@@ -1201,6 +1201,7 @@ static int j721e_wiz_probe(struct udevice *dev)
if (num_lanes > WIZ_MAX_LANES) {
dev_err(dev, "Cannot support %d lanes\n", num_lanes);
rc = -EINVAL;
goto err_addr_to_resource;
}