[alsa-devel] [PATCH] ASoC: tlv320aic3x: Remove '.owner' field of driver
Remove '.owner' field of driver structure as it is going to be filled via "module_i2c_driver" call.
Signed-off-by: Manish Badarkhe manishvb@ti.com --- :100644 100644 0307909... 191b423... M sound/soc/codecs/tlv320aic31xx.c sound/soc/codecs/tlv320aic31xx.c | 1 - 1 file changed, 1 deletion(-)
diff --git a/sound/soc/codecs/tlv320aic31xx.c b/sound/soc/codecs/tlv320aic31xx.c index 0307909..191b423 100644 --- a/sound/soc/codecs/tlv320aic31xx.c +++ b/sound/soc/codecs/tlv320aic31xx.c @@ -1303,7 +1303,6 @@ MODULE_DEVICE_TABLE(i2c, aic31xx_i2c_id); static struct i2c_driver aic31xx_i2c_driver = { .driver = { .name = "tlv320aic31xx-codec", - .owner = THIS_MODULE, .of_match_table = of_match_ptr(tlv320aic31xx_of_match), }, .probe = aic31xx_i2c_probe,
participants (1)
-
Manish Badarkhe