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

Configure Feed

Select the types of activity you want to include in your feed.

mfd: atc260x-i2c: Drop of_match_ptr for ID table

The driver can match only via the DT table so the table should be always
used and the of_match_ptr does not have any sense (this also allows ACPI
matching via PRP0001, even though it might not be relevant here).

drivers/mfd/atc260x-i2c.c:44:34: error: ‘atc260x_i2c_of_match’ defined but not used [-Werror=unused-const-variable=]

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Signed-off-by: Lee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20230311111629.251830-2-krzysztof.kozlowski@linaro.org

authored by

Krzysztof Kozlowski and committed by
Lee Jones
9bb8ccea f130faeb

+1 -1
+1 -1
drivers/mfd/atc260x-i2c.c
··· 51 51 static struct i2c_driver atc260x_i2c_driver = { 52 52 .driver = { 53 53 .name = "atc260x", 54 - .of_match_table = of_match_ptr(atc260x_i2c_of_match), 54 + .of_match_table = atc260x_i2c_of_match, 55 55 }, 56 56 .probe_new = atc260x_i2c_probe, 57 57 };