diff mbox series

i2c: i801: Avoid potential double call to gpiod_remove_lookup_table

Message ID 39f39c4e-b997-4698-8406-4d514a530d0d@gmail.com
State New
Headers show
Series i2c: i801: Avoid potential double call to gpiod_remove_lookup_table | expand

Commit Message

Heiner Kallweit Feb. 23, 2024, 7:11 a.m. UTC
If registering the platform device fails, the lookup table is
removed in the error path. On module removal we would try to
remove the lookup table again. Fix this by leaving it to
i801_del_mux() to clean up.

Fixes: d308dfbf62ef ("i2c: mux/i801: Switch to use descriptor passing")
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
---
 drivers/i2c/busses/i2c-i801.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
index 4b9d04f20..223cd2b84 100644
--- a/drivers/i2c/busses/i2c-i801.c
+++ b/drivers/i2c/busses/i2c-i801.c
@@ -1457,10 +1457,8 @@  static void i801_add_mux(struct i801_priv *priv)
 	priv->mux_pdev = platform_device_register_data(dev, "i2c-mux-gpio",
 				PLATFORM_DEVID_NONE, &gpio_data,
 				sizeof(struct i2c_mux_gpio_platform_data));
-	if (IS_ERR(priv->mux_pdev)) {
-		gpiod_remove_lookup_table(lookup);
+	if (IS_ERR(priv->mux_pdev))
 		dev_err(dev, "Failed to register i2c-mux-gpio device\n");
-	}
 }
 
 static void i801_del_mux(struct i801_priv *priv)