diff options
author | Marek Vasut <marex@denx.de> | 2014-07-25 17:23:35 +0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2014-08-08 10:29:38 +0200 |
commit | 25fe05722a038f8178a26c197ac84fda55b2f168 (patch) | |
tree | c9af761088fdd5bbfc87632e01eac99ad5d87baf | |
parent | c23154aab5825fec81d5500c53eaa686646c76b5 (diff) | |
download | u-boot-imx-25fe05722a038f8178a26c197ac84fda55b2f168.zip u-boot-imx-25fe05722a038f8178a26c197ac84fda55b2f168.tar.gz u-boot-imx-25fe05722a038f8178a26c197ac84fda55b2f168.tar.bz2 |
arm: m53evk: Fix RTC bus number
A previous update to the I2C stack introduced a typo in the
configuration option. Fix the typo and therefore allow the
RTC to work correctly with the 'date' command again.
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Stefano Babic <sbabic@denx.de>
-rw-r--r-- | include/configs/m53evk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/m53evk.h b/include/configs/m53evk.h index 97196c6..e5756d3 100644 --- a/include/configs/m53evk.h +++ b/include/configs/m53evk.h @@ -175,7 +175,7 @@ #ifdef CONFIG_CMD_I2C #define CONFIG_SYS_I2C #define CONFIG_SYS_I2C_MXC -#define CONFIG_SYS_SPD_BUS_NUM 1 /* I2C2 */ +#define CONFIG_SYS_RTC_BUS_NUM 1 /* I2C2 */ #endif /* |