Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f25b00be authored by Ludovic Desroches's avatar Ludovic Desroches Committed by Nicolas Ferre
Browse files

ARM: at91: fix at91_aic_write macro



Fix at91_aic_write macro to avoid potential issues.

Signed-off-by: default avatarLudovic Desroches <ludovic.desroches@atmel.com>
Signed-off-by: default avatarNicolas Ferre <nicolas.ferre@atmel.com>
parent 2d1c9ccd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ extern void __iomem *at91_aic_base;
	__raw_readl(at91_aic_base + field)

#define at91_aic_write(field, value) \
	__raw_writel(value, at91_aic_base + field);
	__raw_writel(value, at91_aic_base + field)
#else
.extern at91_aic_base
#endif