The patch titled Subject: rtc/ab8500: change to mdelay has been removed from the -mm tree. Its filename was rtc-ab8500-change-to-mdelay.patch This patch was dropped because an updated version will be merged The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ From: Jonas Aaberg <jonas.aberg@xxxxxxxxxxxxxx> Subject: rtc/ab8500: change to mdelay The resolution of msleep is related to HZ, so with HZ set to 100 any msleep of less than 10ms will become ~10ms. This does not work for us, so stick to mdelay(1). Signed-off-by: Jonas Aaberg <jonas.aberg@xxxxxxxxxxxxxx> Signed-off-by: Linus Walleij <linus.walleij@xxxxxxxxxx> Cc: Alessandro Zummo <a.zummo@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/rtc/rtc-ab8500.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -puN drivers/rtc/rtc-ab8500.c~rtc-ab8500-change-to-mdelay drivers/rtc/rtc-ab8500.c --- a/drivers/rtc/rtc-ab8500.c~rtc-ab8500-change-to-mdelay +++ a/drivers/rtc/rtc-ab8500.c @@ -90,7 +90,7 @@ static int ab8500_rtc_read_time(struct d /* Early AB8500 chips will not clear the rtc read request bit */ if (abx500_get_chip_id(dev) == 0) { - msleep(1); + mdelay(1); } else { /* Wait for some cycles after enabling the rtc read in ab8500 */ while (time_before(jiffies, timeout)) { @@ -102,7 +102,7 @@ static int ab8500_rtc_read_time(struct d if (!(value & RTC_READ_REQUEST)) break; - msleep(1); + mdelay(1); } } @@ -295,7 +295,7 @@ static int __devinit ab8500_rtc_probe(st return err; /* Wait for reset by the PorRtc */ - msleep(1); + mdelay(1); err = abx500_get_register_interruptible(&pdev->dev, AB8500_RTC, AB8500_RTC_STAT_REG, &rtc_ctrl); _ Patches currently in -mm which might be from jonas.aberg@xxxxxxxxxxxxxx are rtc-ab8500-set-can_wake-flag.patch rtc-ab8500-change-to-msleep-to-usleep_range.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html