mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-15 23:14:31 +08:00
mtd: st_spi_fsm: Allow loop to run at least once before giving up CPU
Reported-by: Brian Norris <computersforpeace@gmail.com> Signed-off-by: Lee Jones <lee.jones@linaro.org> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
This commit is contained in:
parent
f1919cb852
commit
ea7864bf44
@ -861,8 +861,6 @@ static uint8_t stfsm_wait_busy(struct stfsm *fsm)
|
||||
*/
|
||||
deadline = jiffies + FLASH_MAX_BUSY_WAIT;
|
||||
while (!timeout) {
|
||||
cond_resched();
|
||||
|
||||
if (time_after_eq(jiffies, deadline))
|
||||
timeout = 1;
|
||||
|
||||
@ -881,6 +879,8 @@ static uint8_t stfsm_wait_busy(struct stfsm *fsm)
|
||||
if (!timeout)
|
||||
/* Restart */
|
||||
writel(seq->seq_cfg, fsm->base + SPI_FAST_SEQ_CFG);
|
||||
|
||||
cond_resched();
|
||||
}
|
||||
|
||||
dev_err(fsm->dev, "timeout on wait_busy\n");
|
||||
|
Loading…
Reference in New Issue
Block a user