Commit 606d19ee authored by Rob Herring (Arm)'s avatar Rob Herring (Arm) Committed by Alexandre Belloni
Browse files

rtc: x1205: Fix Xicor X1205 vendor prefix



The vendor for the X1205 RTC is not Xircom, but Xicor which was acquired
by Intersil. Since the I2C subsystem drops the vendor prefix for driver
matching, the vendor prefix hasn't mattered.

Fixes: 6875404f ("rtc: x1205: Add DT probing support")
Signed-off-by: default avatarRob Herring (Arm) <robh@kernel.org>
Reviewed-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Link: https://lore.kernel.org/r/20250821215703.869628-2-robh@kernel.org


Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
parent f2e44e5f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -669,7 +669,7 @@ static const struct i2c_device_id x1205_id[] = {
MODULE_DEVICE_TABLE(i2c, x1205_id);

static const struct of_device_id x1205_dt_ids[] = {
	{ .compatible = "xircom,x1205", },
	{ .compatible = "xicor,x1205", },
	{},
};
MODULE_DEVICE_TABLE(of, x1205_dt_ids);