[PATCH 2/6] mfd: rn5t618: use defined compatibles
Lucas Stach <[email protected]> Thu, 11 Jun 2026 13:21:11 +0200
| Newsgroups | org.infradead.lists.barebox |
|---|---|
| Message-ID | <[email protected]> |
Match to the compatibles defined in the ricoh,rn5t618.yaml DT schema. Signed-off-by: Lucas Stach <[email protected]> --- drivers/mfd/rn5t618.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/mfd/rn5t618.c b/drivers/mfd/rn5t618.c index 3af3e6e3e039..2cecdac49b5f 100644 --- a/drivers/mfd/rn5t618.c +++ b/drivers/mfd/rn5t618.c @@ -131,7 +131,9 @@ static int __init rn5t618_i2c_probe(struct device *dev) } static __maybe_unused const struct of_device_id rn5t618_of_match[] = { - { .compatible = "ricoh,rn5t568", .data = NULL, }, + { .compatible = "ricoh,rn5t567" }, + { .compatible = "ricoh,rn5t618" }, + { .compatible = "ricoh,rc5t619" }, { } }; MODULE_DEVICE_TABLE(of, rn5t618_of_match); -- 2.47.3