Skip to content

Commit 9761037

Browse files
committed
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á <nuno.sa@analog.com> Link: https://lore.kernel.org/r/20250501181819.164207-2-krzysztof.kozlowski@linaro.org Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
1 parent 12d3c69 commit 9761037

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/mux/adgs1408.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ static int adgs1408_probe(struct spi_device *spi)
5959
s32 idle_state;
6060
int ret;
6161

62-
chip_id = (enum adgs1408_chip_id)spi_get_device_match_data(spi);
62+
chip_id = (kernel_ulong_t)spi_get_device_match_data(spi);
6363

6464
mux_chip = devm_mux_chip_alloc(dev, 1, 0);
6565
if (IS_ERR(mux_chip))

0 commit comments

Comments
 (0)