[PATCH] ASoC: rt5575: Remove redundant assignment to .owner

From: xiaopeitux

Date: Thu Feb 19 2026 - 21:58:15 EST


From: Pei Xiao <xiaopei01@xxxxxxxxxx>

The coccicheck tool reports the following warning for this driver:
./rt5575.c:342:3-8: No need to set .owner here. The core will do it.

The manual assignment of .owner = THIS_MODULE; in the rt5575_i2c_driver
struct is redundant. The i2c_add_driver() function, which is called to
register the driver, automatically sets the driver's owner to THIS_MODULE.

The driver core handles this assignment internally, making the explicit
initialization in the struct definition unnecessary. Remove the
unnecessary line.

Signed-off-by: Pei Xiao <xiaopei01@xxxxxxxxxx>
---
sound/soc/codecs/rt5575.c | 1 -
1 file changed, 1 deletion(-)

diff --git a/sound/soc/codecs/rt5575.c b/sound/soc/codecs/rt5575.c
index c5525ad195ee..24e41af29689 100644
--- a/sound/soc/codecs/rt5575.c
+++ b/sound/soc/codecs/rt5575.c
@@ -339,7 +339,6 @@ MODULE_DEVICE_TABLE(of, rt5575_of_match);
static struct i2c_driver rt5575_i2c_driver = {
.driver = {
.name = "rt5575",
- .owner = THIS_MODULE,
.of_match_table = rt5575_of_match,
},
.probe = rt5575_i2c_probe,
--
2.25.1