diff options
author | Yang Li <[email protected]> | 2023-02-03 09:15:04 +0800 |
---|---|---|
committer | Mark Brown <[email protected]> | 2023-02-03 12:04:01 +0000 |
commit | 1c9ded98bd4e5b87756423e0abededda6f4ba0b8 (patch) | |
tree | b8836b9058ec35ec1c074ddacda253e9f81bd745 | |
parent | 480b26226873c88e482575ceb0d0a38d76e1be57 (diff) |
ASoC: codecs: fix platform_no_drv_owner.cocci warning
./sound/soc/codecs/aw88395/aw88395.c:572:3-8: No need to set .owner here. The core will do it.
Reported-by: Abaci Robot <[email protected]>
Link: https://bugzilla.openanolis.cn/show_bug.cgi?id=3935
Signed-off-by: Yang Li <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | sound/soc/codecs/aw88395/aw88395.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/soc/codecs/aw88395/aw88395.c b/sound/soc/codecs/aw88395/aw88395.c index bce403744c1a..16ca7ac5ad28 100644 --- a/sound/soc/codecs/aw88395/aw88395.c +++ b/sound/soc/codecs/aw88395/aw88395.c @@ -569,7 +569,6 @@ MODULE_DEVICE_TABLE(i2c, aw88395_i2c_id); static struct i2c_driver aw88395_i2c_driver = { .driver = { .name = AW88395_I2C_NAME, - .owner = THIS_MODULE, }, .probe_new = aw88395_i2c_probe, .id_table = aw88395_i2c_id, |