提交 b367dcaa 编写于 作者: B Ben Hutchings 提交者: James Bottomley

[SCSI] bfa: Replace large udelay() with mdelay()

udelay() does not work on some architectures for values above
2000, in particular on ARM:

ERROR: "__bad_udelay" [drivers/scsi/bfa/bfa.ko] undefined!
Reported-by: NVagrant Cascadian <vagrant@debian.org>
Signed-off-by: NBen Hutchings <ben@decadent.org.uk>
Signed-off-by: NJames Bottomley <JBottomley@Parallels.com>
上级 02845560
...@@ -7006,7 +7006,7 @@ bfa_flash_sem_get(void __iomem *bar) ...@@ -7006,7 +7006,7 @@ bfa_flash_sem_get(void __iomem *bar)
while (!bfa_raw_sem_get(bar)) { while (!bfa_raw_sem_get(bar)) {
if (--n <= 0) if (--n <= 0)
return BFA_STATUS_BADFLASH; return BFA_STATUS_BADFLASH;
udelay(10000); mdelay(10);
} }
return BFA_STATUS_OK; return BFA_STATUS_OK;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册