diff options
author | Michał Mirosław <mirq-linux@rere.qmqm.pl> | 2018-12-19 21:11:16 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-01-03 16:34:05 +0000 |
commit | fb82c6ed31902e651cc9324108f507babfabc890 (patch) | |
tree | 3c1a4a7f9e823eaa8c034f39d32abe5d7dd723d3 | |
parent | 2bb853f6f93775dc4dd4683a42f6934700d90d07 (diff) | |
download | linux-fb82c6ed31902e651cc9324108f507babfabc890.tar.bz2 |
ASoC: wm8904: save model id directly in of_device_id.data
Save 2x unsigned int of .rodata.
Signed-off-by: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/codecs/wm8904.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/sound/soc/codecs/wm8904.c b/sound/soc/codecs/wm8904.c index 2a3e5fbd04e4..9283a2dc70aa 100644 --- a/sound/soc/codecs/wm8904.c +++ b/sound/soc/codecs/wm8904.c @@ -2108,16 +2108,13 @@ static const struct regmap_config wm8904_regmap = { }; #ifdef CONFIG_OF -static enum wm8904_type wm8904_data = WM8904; -static enum wm8904_type wm8912_data = WM8912; - static const struct of_device_id wm8904_of_match[] = { { .compatible = "wlf,wm8904", - .data = &wm8904_data, + .data = (void *)WM8904, }, { .compatible = "wlf,wm8912", - .data = &wm8912_data, + .data = (void *)WM8912, }, { /* sentinel */ } @@ -2158,7 +2155,7 @@ static int wm8904_i2c_probe(struct i2c_client *i2c, match = of_match_node(wm8904_of_match, i2c->dev.of_node); if (match == NULL) return -EINVAL; - wm8904->devtype = *((enum wm8904_type *)match->data); + wm8904->devtype = (enum wm8904_type)match->data; } else { wm8904->devtype = id->driver_data; } |