summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYang Li <yang.lee@linux.alibaba.com>2023-06-25 09:05:47 +0800
committerMark Brown <broonie@kernel.org>2023-07-09 22:51:00 +0100
commit24e04c94bebc4144f790a21a93d090cf9673acd9 (patch)
treee2f64a1a2ad2b4bb110c1194f622af9b6a91c355
parent754d1ce3ab6bec057bf94b0ec1a789fdfa2fef99 (diff)
downloadlinux-stable-24e04c94bebc4144f790a21a93d090cf9673acd9.tar.gz
linux-stable-24e04c94bebc4144f790a21a93d090cf9673acd9.tar.bz2
linux-stable-24e04c94bebc4144f790a21a93d090cf9673acd9.zip
ASoC: tas2781: No need to set device_driver owner
Remove .owner field if calls are used which set it automatically. to silence the warning: ./sound/soc/codecs/tas2781-i2c.c:746:3-8: No need to set .owner here. The core will do it. Reported-by: Abaci Robot <abaci@linux.alibaba.com> Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=5589 Signed-off-by: Yang Li <yang.lee@linux.alibaba.com> Link: https://lore.kernel.org/r/20230625010547.7353-1-yang.lee@linux.alibaba.com Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--sound/soc/codecs/tas2781-i2c.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/soc/codecs/tas2781-i2c.c b/sound/soc/codecs/tas2781-i2c.c
index 4c59429a42b7..55cd5e3c23a5 100644
--- a/sound/soc/codecs/tas2781-i2c.c
+++ b/sound/soc/codecs/tas2781-i2c.c
@@ -743,7 +743,6 @@ MODULE_DEVICE_TABLE(acpi, tasdevice_acpi_match);
static struct i2c_driver tasdevice_i2c_driver = {
.driver = {
.name = "tas2781-codec",
- .owner = THIS_MODULE,
.of_match_table = of_match_ptr(tasdevice_of_match),
#ifdef CONFIG_ACPI
.acpi_match_table = ACPI_PTR(tasdevice_acpi_match),