mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-19 16:14:13 +08:00
spi: Fix reversed args to time_before() in Freescale stmp driver.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
This commit is contained in:
parent
358934a60d
commit
68ea2d82c3
@ -76,7 +76,7 @@ struct stmp_spi {
|
|||||||
break; \
|
break; \
|
||||||
} \
|
} \
|
||||||
cpu_relax(); \
|
cpu_relax(); \
|
||||||
} while (time_before(end_jiffies, jiffies)); \
|
} while (time_before(jiffies, end_jiffies)); \
|
||||||
succeeded; \
|
succeeded; \
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user