realtek: rtl83xx: use devm for mutex_init
authorRosen Penev <rosenp@gmail.com>
Sun, 10 Nov 2024 23:54:14 +0000 (15:54 -0800)
committerPetr Štetiar <ynezz@true.cz>
Thu, 28 Nov 2024 18:46:55 +0000 (18:46 +0000)
mutex_destroy is missing in remove.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/16926
Signed-off-by: Robert Marko <robimarko@gmail.com>
(cherry picked from commit 1125ed408c7f0d130b5606ab39e4dd98a41d5f0a)
Link: https://github.com/openwrt/openwrt/pull/17097
Signed-off-by: Petr Štetiar <ynezz@true.cz>
target/linux/realtek/files-6.6/drivers/net/dsa/rtl83xx/common.c

index 5468fc0653ef51fa5a39945b81264e1486758ebb..fe0980a1beb82a9488545000f4a8d48f6cba4350 100644 (file)
@@ -1492,7 +1492,9 @@ static int __init rtl83xx_sw_probe(struct platform_device *pdev)
        priv->ds->needs_standalone_vlan_filtering = true;
        priv->dev = dev;
 
-       mutex_init(&priv->reg_mutex);
+       err = devm_mutex_init(dev, &priv->reg_mutex);
+       if (err)
+               return err;
 
        priv->family_id = soc_info.family;
        priv->id = soc_info.id;