diff options
| author | Rosen Penev | 2024-11-10 23:54:14 +0000 |
|---|---|---|
| committer | Robert Marko | 2024-11-12 10:19:52 +0000 |
| commit | 1125ed408c7f0d130b5606ab39e4dd98a41d5f0a (patch) | |
| tree | 4cb1f5dedde5fe32433d235b42fff3b887b4f3a0 | |
| parent | be3e7a84bd37f29e14e4c6a89b8c79bc9808c36c (diff) | |
| download | openwrt-1125ed408c7f0d130b5606ab39e4dd98a41d5f0a.tar.gz | |
realtek: rtl83xx: use devm for mutex_init
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>
| -rw-r--r-- | target/linux/realtek/files-6.6/drivers/net/dsa/rtl83xx/common.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/target/linux/realtek/files-6.6/drivers/net/dsa/rtl83xx/common.c b/target/linux/realtek/files-6.6/drivers/net/dsa/rtl83xx/common.c index 5468fc0653..fe0980a1be 100644 --- a/target/linux/realtek/files-6.6/drivers/net/dsa/rtl83xx/common.c +++ b/target/linux/realtek/files-6.6/drivers/net/dsa/rtl83xx/common.c @@ -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; |