diff options
| author | Krzysztof Kozlowski <[email protected]> | 2024-03-27 18:44:37 +0100 |
|---|---|---|
| committer | Mark Brown <[email protected]> | 2024-03-28 13:57:41 +0000 |
| commit | 8a4836231c98bde3fa49ad657c09342d2d7e27a7 (patch) | |
| tree | d9cdf4921ba1b568eee14b275a1efbeeed78930c | |
| parent | c335412ced27459b6ce71e812344a0bbaf43ab6a (diff) | |
ASoC: tlv320aic32x4-spi: drop driver owner assignment
Core in spi_register_driver() already sets the .owner, so driver
does not need to.
Signed-off-by: Krzysztof Kozlowski <[email protected]>
Reviewed-by: Pierre-Louis Bossart <[email protected]>
Link: https://msgid.link/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
| -rw-r--r-- | sound/soc/codecs/tlv320aic32x4-spi.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/soc/codecs/tlv320aic32x4-spi.c b/sound/soc/codecs/tlv320aic32x4-spi.c index d5976c91766e..92246243ff94 100644 --- a/sound/soc/codecs/tlv320aic32x4-spi.c +++ b/sound/soc/codecs/tlv320aic32x4-spi.c @@ -56,7 +56,6 @@ MODULE_DEVICE_TABLE(of, aic32x4_of_id); static struct spi_driver aic32x4_spi_driver = { .driver = { .name = "tlv320aic32x4", - .owner = THIS_MODULE, .of_match_table = aic32x4_of_id, }, .probe = aic32x4_spi_probe, |