From: Rob Herring (Arm) Date: Mon, 26 Aug 2024 19:13:20 +0000 (-0500) Subject: rtc: s35390a: Drop vendorless compatible string from match table X-Git-Tag: v6.12-rc1~49^2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=da1531ecf18612572c53878d5ef8e94673bf86ce;p=thirdparty%2Fkernel%2Flinux.git rtc: s35390a: Drop vendorless compatible string from match table There's no need to list "s35390a" in the DT match table. The I2C core will strip any vendor prefix and match against the i2c_device_id table which has an "s35390a" entry. Signed-off-by: Rob Herring (Arm) Link: https://lore.kernel.org/r/20240826191321.1410668-1-robh@kernel.org Signed-off-by: Alexandre Belloni --- diff --git a/drivers/rtc/rtc-s35390a.c b/drivers/rtc/rtc-s35390a.c index 2d6b655a4b25b..e3dc18882f414 100644 --- a/drivers/rtc/rtc-s35390a.c +++ b/drivers/rtc/rtc-s35390a.c @@ -56,7 +56,6 @@ static const struct i2c_device_id s35390a_id[] = { MODULE_DEVICE_TABLE(i2c, s35390a_id); static const __maybe_unused struct of_device_id s35390a_of_match[] = { - { .compatible = "s35390a" }, { .compatible = "sii,s35390a" }, { } };