rtc: Fix printf format warning in m41t60.c

Signed-off-by: Stefan Roese <sr@denx.de>
master
Stefan Roese 17 years ago committed by Wolfgang Denk
parent dc1da42f81
commit 10943c9afa
  1. 2
      drivers/rtc/m41t60.c

@ -241,7 +241,7 @@ void rtc_reset(void)
if (l <= 0x3F) {
if ((data[RTC_CTRL] & 0x3F) != l) {
printf("Setting RTC calibration to 0x%02X\n",
printf("Setting RTC calibration to 0x%02lX\n",
l);
data[RTC_CTRL] &= 0xC0;
data[RTC_CTRL] |= (uchar) l;

Loading…
Cancel
Save