diff options
author | Javier Martinez Canillas <javier@osg.samsung.com> | 2017-04-04 14:59:30 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-04-05 13:19:46 -0400 |
commit | 13023ff3b3372543e4197b4b57d378350780fe96 (patch) | |
tree | d6d927df53db64c68ef3187f44e9e9e5730c9f76 | |
parent | a5de5b74a50113564a1e0850e2da96c37c35e55d (diff) |
ASoC: cs53l30: Set .of_match_table to OF device ID table
The driver has an OF device ID table but the struct i2c_driver
.of_match_table field is not set.
Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/codecs/cs53l30.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/codecs/cs53l30.c b/sound/soc/codecs/cs53l30.c index cb47fb595ff4..1e0d5973b758 100644 --- a/sound/soc/codecs/cs53l30.c +++ b/sound/soc/codecs/cs53l30.c | |||
@@ -1130,6 +1130,7 @@ MODULE_DEVICE_TABLE(i2c, cs53l30_id); | |||
1130 | static struct i2c_driver cs53l30_i2c_driver = { | 1130 | static struct i2c_driver cs53l30_i2c_driver = { |
1131 | .driver = { | 1131 | .driver = { |
1132 | .name = "cs53l30", | 1132 | .name = "cs53l30", |
1133 | .of_match_table = cs53l30_of_match, | ||
1133 | .pm = &cs53l30_runtime_pm, | 1134 | .pm = &cs53l30_runtime_pm, |
1134 | }, | 1135 | }, |
1135 | .id_table = cs53l30_id, | 1136 | .id_table = cs53l30_id, |