diff options
author | Jeremy J. Peper <jeremy@jeremypeper.com> | 2023-03-17 18:43:45 +0300 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2023-04-18 18:04:21 +0300 |
commit | 189e3ddb64cca682fc13a0f3d7216a1314a7975d (patch) | |
tree | aec64ba5282189ecf55086454125a111a3c4237e /arch/arm/mach-mv78xx0 | |
parent | cf15079c6b6163c15254437d862351e5b438be8b (diff) | |
download | linux-189e3ddb64cca682fc13a0f3d7216a1314a7975d.tar.xz |
ARM: mv78xx0: set the correct driver for the i2c RTC
Original code was largely copy-pasted from the reference board code, adjust to use the actual RTC chip present on the TS-WXL.
Signed-off-by: Jeremy J. Peper <jeremy@jeremypeper.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-mv78xx0')
-rw-r--r-- | arch/arm/mach-mv78xx0/buffalo-wxl-setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-mv78xx0/buffalo-wxl-setup.c b/arch/arm/mach-mv78xx0/buffalo-wxl-setup.c index 383dc6eab71a..c3f6dc3518af 100644 --- a/arch/arm/mach-mv78xx0/buffalo-wxl-setup.c +++ b/arch/arm/mach-mv78xx0/buffalo-wxl-setup.c @@ -39,7 +39,7 @@ static struct mv_sata_platform_data db78x00_sata_data = { }; static struct i2c_board_info __initdata db78x00_i2c_rtc = { - I2C_BOARD_INFO("ds1338", 0x68), + I2C_BOARD_INFO("rs5c372a", 0x32), }; |