diff mbox series

rtc: s35390a: Drop vendorless compatible string from match table

Message ID 20240826191321.1410668-1-robh@kernel.org
State Accepted
Headers show
Series rtc: s35390a: Drop vendorless compatible string from match table | expand

Commit Message

Rob Herring (Arm) Aug. 26, 2024, 7:13 p.m. UTC
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) <robh@kernel.org>
---
 drivers/rtc/rtc-s35390a.c | 1 -
 1 file changed, 1 deletion(-)

Comments

Alexandre Belloni Sept. 11, 2024, 10:18 p.m. UTC | #1
On Mon, 26 Aug 2024 14:13:20 -0500, Rob Herring (Arm) wrote:
> 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.
> 
> 

Applied, thanks!

[1/1] rtc: s35390a: Drop vendorless compatible string from match table
      https://git.kernel.org/abelloni/c/da1531ecf186

Best regards,
diff mbox series

Patch

diff --git a/drivers/rtc/rtc-s35390a.c b/drivers/rtc/rtc-s35390a.c
index 2d6b655a4b25..e3dc18882f41 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" },
 	{ }
 };