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.

Input: bcm_iproc_tsc - 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). This
also fixes !CONFIG_OF error:

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20230312131514.351603-4-krzysztof.kozlowski@linaro.org
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

authored by

Krzysztof Kozlowski and committed by
Dmitry Torokhov
f1e96f06 f92dd6d0

+1 -1
+1 -1
drivers/input/touchscreen/bcm_iproc_tsc.c
··· 511 511 .probe = iproc_ts_probe, 512 512 .driver = { 513 513 .name = IPROC_TS_NAME, 514 - .of_match_table = of_match_ptr(iproc_ts_of_match), 514 + .of_match_table = iproc_ts_of_match, 515 515 }, 516 516 }; 517 517