diff options
author | Johan Hovold <jhovold@gmail.com> | 2013-04-07 10:49:59 -0400 |
---|---|---|
committer | Nicolas Ferre <nicolas.ferre@atmel.com> | 2013-04-08 11:47:44 -0400 |
commit | 3aa630b3e6be83c4e91a68537fe6edf80f8d295e (patch) | |
tree | 45651a4be52765dfb6b9bdcb71caf9e67e6ed2d2 /arch/arm/mach-at91 | |
parent | 95f287e5a180cc78f3fd3debec265d64acb44284 (diff) |
ARM: at91: remove trailing semicolon from macros
Remove trailing semicolon from register-access macros.
Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Diffstat (limited to 'arch/arm/mach-at91')
-rw-r--r-- | arch/arm/mach-at91/at91_rstc.h | 2 | ||||
-rw-r--r-- | arch/arm/mach-at91/at91_shdwc.h | 2 | ||||
-rw-r--r-- | arch/arm/mach-at91/at91x40_time.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-at91/include/mach/at91_matrix.h | 2 | ||||
-rw-r--r-- | arch/arm/mach-at91/include/mach/at91_st.h | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/arch/arm/mach-at91/at91_rstc.h b/arch/arm/mach-at91/at91_rstc.h index 875fa336800b..a600e6992920 100644 --- a/arch/arm/mach-at91/at91_rstc.h +++ b/arch/arm/mach-at91/at91_rstc.h | |||
@@ -23,7 +23,7 @@ extern void __iomem *at91_rstc_base; | |||
23 | __raw_readl(at91_rstc_base + field) | 23 | __raw_readl(at91_rstc_base + field) |
24 | 24 | ||
25 | #define at91_rstc_write(field, value) \ | 25 | #define at91_rstc_write(field, value) \ |
26 | __raw_writel(value, at91_rstc_base + field); | 26 | __raw_writel(value, at91_rstc_base + field) |
27 | #else | 27 | #else |
28 | .extern at91_rstc_base | 28 | .extern at91_rstc_base |
29 | #endif | 29 | #endif |
diff --git a/arch/arm/mach-at91/at91_shdwc.h b/arch/arm/mach-at91/at91_shdwc.h index 60478ea8bd46..9e29f31ec9a6 100644 --- a/arch/arm/mach-at91/at91_shdwc.h +++ b/arch/arm/mach-at91/at91_shdwc.h | |||
@@ -23,7 +23,7 @@ extern void __iomem *at91_shdwc_base; | |||
23 | __raw_readl(at91_shdwc_base + field) | 23 | __raw_readl(at91_shdwc_base + field) |
24 | 24 | ||
25 | #define at91_shdwc_write(field, value) \ | 25 | #define at91_shdwc_write(field, value) \ |
26 | __raw_writel(value, at91_shdwc_base + field); | 26 | __raw_writel(value, at91_shdwc_base + field) |
27 | #endif | 27 | #endif |
28 | 28 | ||
29 | #define AT91_SHDW_CR 0x00 /* Shut Down Control Register */ | 29 | #define AT91_SHDW_CR 0x00 /* Shut Down Control Register */ |
diff --git a/arch/arm/mach-at91/at91x40_time.c b/arch/arm/mach-at91/at91x40_time.c index 0c07a4459cb2..2919eba41ff4 100644 --- a/arch/arm/mach-at91/at91x40_time.c +++ b/arch/arm/mach-at91/at91x40_time.c | |||
@@ -33,7 +33,7 @@ | |||
33 | __raw_readl(AT91_IO_P2V(AT91_TC) + field) | 33 | __raw_readl(AT91_IO_P2V(AT91_TC) + field) |
34 | 34 | ||
35 | #define at91_tc_write(field, value) \ | 35 | #define at91_tc_write(field, value) \ |
36 | __raw_writel(value, AT91_IO_P2V(AT91_TC) + field); | 36 | __raw_writel(value, AT91_IO_P2V(AT91_TC) + field) |
37 | 37 | ||
38 | /* | 38 | /* |
39 | * 3 counter/timer units present. | 39 | * 3 counter/timer units present. |
diff --git a/arch/arm/mach-at91/include/mach/at91_matrix.h b/arch/arm/mach-at91/include/mach/at91_matrix.h index 02fae9de746b..f8996c954131 100644 --- a/arch/arm/mach-at91/include/mach/at91_matrix.h +++ b/arch/arm/mach-at91/include/mach/at91_matrix.h | |||
@@ -14,7 +14,7 @@ extern void __iomem *at91_matrix_base; | |||
14 | __raw_readl(at91_matrix_base + field) | 14 | __raw_readl(at91_matrix_base + field) |
15 | 15 | ||
16 | #define at91_matrix_write(field, value) \ | 16 | #define at91_matrix_write(field, value) \ |
17 | __raw_writel(value, at91_matrix_base + field); | 17 | __raw_writel(value, at91_matrix_base + field) |
18 | 18 | ||
19 | #else | 19 | #else |
20 | .extern at91_matrix_base | 20 | .extern at91_matrix_base |
diff --git a/arch/arm/mach-at91/include/mach/at91_st.h b/arch/arm/mach-at91/include/mach/at91_st.h index 969aac27109f..67fdbd13c3ed 100644 --- a/arch/arm/mach-at91/include/mach/at91_st.h +++ b/arch/arm/mach-at91/include/mach/at91_st.h | |||
@@ -23,7 +23,7 @@ extern void __iomem *at91_st_base; | |||
23 | __raw_readl(at91_st_base + field) | 23 | __raw_readl(at91_st_base + field) |
24 | 24 | ||
25 | #define at91_st_write(field, value) \ | 25 | #define at91_st_write(field, value) \ |
26 | __raw_writel(value, at91_st_base + field); | 26 | __raw_writel(value, at91_st_base + field) |
27 | #else | 27 | #else |
28 | .extern at91_st_base | 28 | .extern at91_st_base |
29 | #endif | 29 | #endif |