Commit f25b00be60ab3865308a89437af66b277b04f53e

Authored by Ludovic Desroches
Committed by Nicolas Ferre
1 parent 2d1c9ccd68

ARM: at91: fix at91_aic_write macro

Fix at91_aic_write macro to avoid potential issues.

Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

arch/arm/mach-at91/include/mach/at91_aic.h
... ... @@ -23,7 +23,7 @@
23 23 __raw_readl(at91_aic_base + field)
24 24  
25 25 #define at91_aic_write(field, value) \
26   - __raw_writel(value, at91_aic_base + field);
  26 + __raw_writel(value, at91_aic_base + field)
27 27 #else
28 28 .extern at91_aic_base
29 29 #endif