The only udelay() call takes place in a sleepable context, we can sleep
instead. Use usleep_range().
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
while (readl(iss->regs[OMAP4_ISS_MEM_TOP] + ISS_HL_SYSCONFIG) &
ISS_HL_SYSCONFIG_SOFTRESET) {
- if (timeout++ > 10000) {
+ if (timeout++ > 100) {
dev_alert(iss->dev, "cannot reset ISS\n");
return -ETIMEDOUT;
}
- udelay(1);
+ usleep_range(10, 10);
}
return 0;
dev_alert(iss->dev, "cannot set ISP5 to standby\n");
return -ETIMEDOUT;
}
- msleep(1);
+ usleep_range(1000, 1500);
}
/* Now finally, do the reset */
dev_alert(iss->dev, "cannot reset ISP5\n");
return -ETIMEDOUT;
}
- msleep(1);
+ usleep_range(1000, 1500);
}
return 0;