diff options
author | Yang Li <yang.lee@linux.alibaba.com> | 2021-03-03 17:08:01 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-03-10 13:13:21 +0000 |
commit | a5e78cfbd50e33c19236f32693516380d1a61c34 (patch) | |
tree | ac405dceae0166dd394fa2d8e59a8d5fd7c66488 /sound/soc | |
parent | 3d01f5ee19c37c2dcaa937f060014dfd46a8ab2f (diff) |
ASoC: codecs: fix platform_no_drv_owner.cocci warnings
./sound/soc/codecs/lpass-rx-macro.c:3588:3-8: No need to set .owner here.
The core will do it.
Remove .owner field if calls are used which set it automatically
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Link: https://lore.kernel.org/r/1614762481-102466-1-git-send-email-yang.lee@linux.alibaba.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/codecs/lpass-rx-macro.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/soc/codecs/lpass-rx-macro.c b/sound/soc/codecs/lpass-rx-macro.c index 76909c50d7b9..c0f7b5ecbf9e 100644 --- a/sound/soc/codecs/lpass-rx-macro.c +++ b/sound/soc/codecs/lpass-rx-macro.c @@ -3585,7 +3585,6 @@ static const struct of_device_id rx_macro_dt_match[] = { static struct platform_driver rx_macro_driver = { .driver = { .name = "rx_macro", - .owner = THIS_MODULE, .of_match_table = rx_macro_dt_match, .suppress_bind_attrs = true, }, |