aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sound/soc/codecs/wm8904.c
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>2023-08-15 16:32:03 +0200
committerMark Brown <broonie@kernel.org>2023-08-15 19:22:59 +0100
commit5a1803324949f4ebdf6e887b59e0e89afc3ee0bb (patch)
treebf81d0002d83ba0ad1ec086d490c727182d45ad0 /sound/soc/codecs/wm8904.c
parentASoC: codecs: tlv320aic32x4: Fix Wvoid-pointer-to-enum-cast warning (diff)
downloadwireguard-linux-5a1803324949f4ebdf6e887b59e0e89afc3ee0bb.tar.xz
wireguard-linux-5a1803324949f4ebdf6e887b59e0e89afc3ee0bb.zip
ASoC: codecs: wm8904: Fix Wvoid-pointer-to-enum-cast warning
'devtype' is an enum, thus cast of pointer on 64-bit compile test with W=1 causes: wm8904.c:2205:21: error: cast to smaller integer type 'enum wm8904_type' from 'const void *' [-Werror,-Wvoid-pointer-to-enum-cast] Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Link: https://lore.kernel.org/r/20230815143204.379708-2-krzysztof.kozlowski@linaro.org Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/wm8904.c')
-rw-r--r--sound/soc/codecs/wm8904.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm8904.c b/sound/soc/codecs/wm8904.c
index 60319b468fb2..829bf055622a 100644
--- a/sound/soc/codecs/wm8904.c
+++ b/sound/soc/codecs/wm8904.c
@@ -2202,7 +2202,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 = (uintptr_t)match->data;
} else {
const struct i2c_device_id *id =
i2c_match_id(wm8904_i2c_id, i2c);