Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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: 6875404fdb44 ("rtc: x1205: Add DT probing support")
Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Link: https://lore.kernel.org/r/20250821215703.869628-2-robh@kernel.org
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>

authored by

Rob Herring (Arm) and committed by
Alexandre Belloni
606d19ee f2e44e5f

+1 -1
+1 -1
drivers/rtc/rtc-x1205.c
··· 669 669 MODULE_DEVICE_TABLE(i2c, x1205_id); 670 670 671 671 static const struct of_device_id x1205_dt_ids[] = { 672 - { .compatible = "xircom,x1205", }, 672 + { .compatible = "xicor,x1205", }, 673 673 {}, 674 674 }; 675 675 MODULE_DEVICE_TABLE(of, x1205_dt_ids);