]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
backlight: arcxcnn_bl: Drop of_match_ptr for ID table
authorKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Sat, 11 Mar 2023 17:35:56 +0000 (18:35 +0100)
committerLee Jones <lee@kernel.org>
Thu, 16 Mar 2023 16:11:42 +0000 (16:11 +0000)
The driver will match mostly by DT table (even thought there is regular
ID table) so there is little benefit in of_match_ptr (this also allows
ACPI matching via PRP0001, even though it might not be relevant here).

  drivers/video/backlight/arcxcnn_bl.c:378:34: error: ‘arcxcnn_dt_ids’ defined but not used [-Werror=unused-const-variable=]

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org>
Signed-off-by: Lee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20230311173556.263086-2-krzysztof.kozlowski@linaro.org
drivers/video/backlight/arcxcnn_bl.c

index e610d7a1d13dfcf6bd4e1640f8742fb004074f51..088bcca547dd07ed6b76200ce899f194c73e6099 100644 (file)
@@ -390,7 +390,7 @@ MODULE_DEVICE_TABLE(i2c, arcxcnn_ids);
 static struct i2c_driver arcxcnn_driver = {
        .driver = {
                .name = "arcxcnn_bl",
-               .of_match_table = of_match_ptr(arcxcnn_dt_ids),
+               .of_match_table = arcxcnn_dt_ids,
        },
        .probe_new = arcxcnn_probe,
        .remove = arcxcnn_remove,