diff mbox series

usb: typec: stusb160x: Use common code in stusb160x_probe()

Message ID 5d97e724-928d-45aa-b526-ee9c0d71dfd5@web.de
State New
Headers show
Series usb: typec: stusb160x: Use common code in stusb160x_probe() | expand

Commit Message

Markus Elfring June 29, 2024, 2:40 p.m. UTC
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Sat, 29 Jun 2024 16:18:23 +0200

Replace a function call and a return statement by a status code assignment
and a goto statement so that a bit of common code can be better reused
at the end of this function implementation.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
 drivers/usb/typec/stusb160x.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

--
2.45.2
diff mbox series

Patch

diff --git a/drivers/usb/typec/stusb160x.c b/drivers/usb/typec/stusb160x.c
index f3140fc04c12..e610f19126b7 100644
--- a/drivers/usb/typec/stusb160x.c
+++ b/drivers/usb/typec/stusb160x.c
@@ -777,9 +777,8 @@  static int stusb160x_probe(struct i2c_client *client)
 		}
 	}

-	fwnode_handle_put(fwnode);
-
-	return 0;
+	ret = 0;
+	goto fwnode_put;

 role_sw_put:
 	if (chip->role_sw)