Re: [PATCH v5 3/4] media: i2c: ds90ub953: use devm_mutex_init() to simplify code
From: Tomi Valkeinen
Date: Wed Mar 11 2026 - 04:48:19 EST
Hi,
On 28/02/2026 08:18, Guoniu Zhou wrote:
> From: Guoniu Zhou <guoniu.zhou@xxxxxxx>
>
> Use devm_mutex_init() to simplify the code. No functional change.
>
> Reviewed-by: Frank Li <Frank.Li@xxxxxxx>
> Signed-off-by: Guoniu Zhou <guoniu.zhou@xxxxxxx>
> ---
> Changes in v2:
> - Move PTR_ERR() in dev_err_probe();
> ---
Reviewed-by: Tomi Valkeinen <tomi.valkeinen@xxxxxxxxxxxxxxxx>
Tomi
> drivers/media/i2c/ds90ub953.c | 33 +++++++++++++--------------------
> 1 file changed, 13 insertions(+), 20 deletions(-)
>
> diff --git a/drivers/media/i2c/ds90ub953.c b/drivers/media/i2c/ds90ub953.c
> index 14dd0aa4cc6ceba66a8c3545c7d7d19694007431..a85c6a9b64070491db161ca1586179dba9c69cb0 100644
> --- a/drivers/media/i2c/ds90ub953.c
> +++ b/drivers/media/i2c/ds90ub953.c
> @@ -1345,7 +1345,9 @@ static int ub953_probe(struct i2c_client *client)
> if (!priv->plat_data)
> return dev_err_probe(dev, -ENODEV, "Platform data missing\n");
>
> - mutex_init(&priv->reg_lock);
> + ret = devm_mutex_init(dev, &priv->reg_lock);
> + if (ret)
> + return ret;
>
> /*
> * Initialize to invalid values so that the first reg writes will
> @@ -1354,32 +1356,26 @@ static int ub953_probe(struct i2c_client *client)
> priv->current_indirect_target = 0xff;
>
> priv->regmap = devm_regmap_init_i2c(client, &ub953_regmap_config);
> - if (IS_ERR(priv->regmap)) {
> - ret = PTR_ERR(priv->regmap);
> - dev_err_probe(dev, ret, "Failed to init regmap\n");
> - goto err_mutex_destroy;
> - }
> + if (IS_ERR(priv->regmap))
> + return dev_err_probe(dev, PTR_ERR(priv->regmap),
> + "Failed to init regmap\n");
>
> priv->clkin = devm_clk_get_optional(dev, "clkin");
> - if (IS_ERR(priv->clkin)) {
> - ret = PTR_ERR(priv->clkin);
> - dev_err_probe(dev, ret, "failed to parse 'clkin'\n");
> - goto err_mutex_destroy;
> - }
> + if (IS_ERR(priv->clkin))
> + return dev_err_probe(dev, PTR_ERR(priv->clkin),
> + "Failed to parse 'clkin'\n");
>
> ret = ub953_parse_dt(priv);
> if (ret)
> - goto err_mutex_destroy;
> + return ret;
>
> ret = ub953_hw_init(priv);
> if (ret)
> - goto err_mutex_destroy;
> + return ret;
>
> ret = ub953_gpiochip_probe(priv);
> - if (ret) {
> - dev_err_probe(dev, ret, "Failed to init gpiochip\n");
> - goto err_mutex_destroy;
> - }
> + if (ret)
> + return dev_err_probe(dev, ret, "Failed to init gpiochip\n");
>
> ret = ub953_register_clkout(priv);
> if (ret) {
> @@ -1403,8 +1399,6 @@ static int ub953_probe(struct i2c_client *client)
> ub953_subdev_uninit(priv);
> err_gpiochip_remove:
> ub953_gpiochip_remove(priv);
> -err_mutex_destroy:
> - mutex_destroy(&priv->reg_lock);
>
> return ret;
> }
> @@ -1419,7 +1413,6 @@ static void ub953_remove(struct i2c_client *client)
> ub953_subdev_uninit(priv);
>
> ub953_gpiochip_remove(priv);
> - mutex_destroy(&priv->reg_lock);
> }
>
> static const struct ub953_hw_data ds90ub953_hw = {
>