Re: [PATCH] staging: media: max96712: fix kernel oops when removing module
From: Ricardo Ribalda Delgado
Date: Mon Dec 16 2024 - 12:06:19 EST
Hi
You probably want to add:
diff --git a/drivers/staging/media/max96712/max96712.c
b/drivers/staging/media/max96712/max96712.c
index ede02e8c891c..a47f18d57325 100644
--- a/drivers/staging/media/max96712/max96712.c
+++ b/drivers/staging/media/max96712/max96712.c
@@ -418,7 +418,6 @@ static int max96712_probe(struct i2c_client *client)
priv->info = of_device_get_match_data(&client->dev);
priv->client = client;
- i2c_set_clientdata(client, priv);
priv->regmap = devm_regmap_init_i2c(client, &max96712_i2c_regmap);
if (IS_ERR(priv->regmap))
That way it will be more difficult to make the same mistake again.
Regards!