From: Javier Martinez Canillas Date: Tue, 4 Apr 2017 18:59:30 +0000 (-0400) Subject: ASoC: cs53l30: Set .of_match_table to OF device ID table X-Git-Tag: v4.12-rc1~6^2~3^2~10^3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=13023ff3b3372543e4197b4b57d378350780fe96;p=platform%2Fkernel%2Flinux-exynos.git 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 Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/cs53l30.c b/sound/soc/codecs/cs53l30.c index cb47fb5..1e0d597 100644 --- a/sound/soc/codecs/cs53l30.c +++ b/sound/soc/codecs/cs53l30.c @@ -1130,6 +1130,7 @@ MODULE_DEVICE_TABLE(i2c, cs53l30_id); static struct i2c_driver cs53l30_i2c_driver = { .driver = { .name = "cs53l30", + .of_match_table = cs53l30_of_match, .pm = &cs53l30_runtime_pm, }, .id_table = cs53l30_id,