Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mux: adgs1408: simplify with spi_get_device_match_data()

Use spi_get_device_match_data() helper to simplify a bit the driver.

Link: https://lore.kernel.org/r/20240606142443.130517-1-krzysztof.kozlowski@linaro.org
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

+1 -3
+1 -3
drivers/mux/adgs1408.c
··· 59 59 s32 idle_state; 60 60 int ret; 61 61 62 - chip_id = (enum adgs1408_chip_id)device_get_match_data(dev); 63 - if (!chip_id) 64 - chip_id = spi_get_device_id(spi)->driver_data; 62 + chip_id = (enum adgs1408_chip_id)spi_get_device_match_data(spi); 65 63 66 64 mux_chip = devm_mux_chip_alloc(dev, 1, 0); 67 65 if (IS_ERR(mux_chip))