]> www.infradead.org Git - linux-platform-drivers-x86.git/commitdiff
ARM: s3c: Drop explicit initialization of struct i2c_device_id::driver_data to 0
authorUwe Kleine-König <u.kleine-koenig@baylibre.com>
Mon, 8 Jul 2024 15:25:30 +0000 (17:25 +0200)
committerKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Mon, 29 Jul 2024 12:24:30 +0000 (14:24 +0200)
The wlf-gf-module driver doesn't use the driver_data member of struct
i2c_device_id, so don't explicitly initialize this member.

This prepares putting driver_data in an anonymous union which requires
either no initialization or named designators. But it's also a nice
cleanup on its own.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
Link: https://lore.kernel.org/r/20240708152530.19306-2-u.kleine-koenig@baylibre.com
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
arch/arm/mach-s3c/mach-crag6410-module.c

index 2de1a89f6e9976b1b656aad31c9a15254055a2b1..4ffcf024b09df0c27ab64bce494d9a91e6c31a8c 100644 (file)
@@ -446,7 +446,7 @@ static int wlf_gf_module_probe(struct i2c_client *i2c)
 }
 
 static const struct i2c_device_id wlf_gf_module_id[] = {
-       { "wlf-gf-module", 0 },
+       { "wlf-gf-module" },
        { }
 };