Skip to content

Commit

Permalink
ARM: at91: remove trailing semicolon from macros
Browse files Browse the repository at this point in the history
Remove trailing semicolon from register-access macros.

Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
  • Loading branch information
Johan Hovold authored and Nicolas Ferre committed Apr 8, 2013
1 parent 95f287e commit 3aa630b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion arch/arm/mach-at91/at91_rstc.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ extern void __iomem *at91_rstc_base;
__raw_readl(at91_rstc_base + field)

#define at91_rstc_write(field, value) \
__raw_writel(value, at91_rstc_base + field);
__raw_writel(value, at91_rstc_base + field)
#else
.extern at91_rstc_base
#endif
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-at91/at91_shdwc.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ extern void __iomem *at91_shdwc_base;
__raw_readl(at91_shdwc_base + field)

#define at91_shdwc_write(field, value) \
__raw_writel(value, at91_shdwc_base + field);
__raw_writel(value, at91_shdwc_base + field)
#endif

#define AT91_SHDW_CR 0x00 /* Shut Down Control Register */
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-at91/at91x40_time.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
__raw_readl(AT91_IO_P2V(AT91_TC) + field)

#define at91_tc_write(field, value) \
__raw_writel(value, AT91_IO_P2V(AT91_TC) + field);
__raw_writel(value, AT91_IO_P2V(AT91_TC) + field)

/*
* 3 counter/timer units present.
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-at91/include/mach/at91_matrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ extern void __iomem *at91_matrix_base;
__raw_readl(at91_matrix_base + field)

#define at91_matrix_write(field, value) \
__raw_writel(value, at91_matrix_base + field);
__raw_writel(value, at91_matrix_base + field)

#else
.extern at91_matrix_base
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-at91/include/mach/at91_st.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ extern void __iomem *at91_st_base;
__raw_readl(at91_st_base + field)

#define at91_st_write(field, value) \
__raw_writel(value, at91_st_base + field);
__raw_writel(value, at91_st_base + field)
#else
.extern at91_st_base
#endif
Expand Down

0 comments on commit 3aa630b

Please sign in to comment.