ARM: 7089/1: L2X0: add explicit cpu_relax() for busy wait loop
using cpu_relax in busy loops is a well-known idiom in the kernel. It's more for documentation purposes than technically needed here. Signed-off-by: Barry Song <Baohua.Song@csr.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Reviewed-by: Jamie Iles <jamie@jamieiles.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
8c369264b6
commit
1caf30924f
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ static inline void cache_wait_way(void __iomem *reg, unsigned long mask)
|
||||||
{
|
{
|
||||||
/* wait for cache operation by line or way to complete */
|
/* wait for cache operation by line or way to complete */
|
||||||
while (readl_relaxed(reg) & mask)
|
while (readl_relaxed(reg) & mask)
|
||||||
;
|
cpu_relax();
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_CACHE_PL310
|
#ifdef CONFIG_CACHE_PL310
|
||||||
|
|
Loading…
Reference in a new issue