Skip to content

Commit

Permalink
ARM: at91: fix at91_aic_write macro
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Ludovic Desroches authored and Nicolas Ferre committed Jul 2, 2012
1 parent 2d1c9cc commit f25b00b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-at91/include/mach/at91_aic.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f25b00b

Please sign in to comment.