From: Krzysztof Kozlowski Date: Thu, 1 May 2025 18:18:20 +0000 (+0200) Subject: mux: adgs1408: fix Wvoid-pointer-to-enum-cast warning X-Git-Tag: v6.16-rc1~30^2~37^2 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=9761037d28327e0d4ee9586a8210ef6462c2c757;p=linux-block.git mux: adgs1408: fix Wvoid-pointer-to-enum-cast warning 'chip_id' is an enum, thus cast of pointer on 64-bit compile test with W=1 causes: adgs1408.c:63:12: error: cast to smaller integer type 'enum adgs1408_chip_id' from 'const void *' [-Werror,-Wvoid-pointer-to-enum-cast] Reviewed-by: Nuno Sá Link: https://lore.kernel.org/r/20250501181819.164207-2-krzysztof.kozlowski@linaro.org Signed-off-by: Krzysztof Kozlowski --- diff --git a/drivers/mux/adgs1408.c b/drivers/mux/adgs1408.c index 5386cfedcb06..5eaf07d09ac9 100644 --- a/drivers/mux/adgs1408.c +++ b/drivers/mux/adgs1408.c @@ -59,7 +59,7 @@ static int adgs1408_probe(struct spi_device *spi) s32 idle_state; int ret; - chip_id = (enum adgs1408_chip_id)spi_get_device_match_data(spi); + chip_id = (kernel_ulong_t)spi_get_device_match_data(spi); mux_chip = devm_mux_chip_alloc(dev, 1, 0); if (IS_ERR(mux_chip))