[U-Boot] [PATCH] at91_pit: Fix AT91_PIT_MR_PIV_MASK macro

Alexander Stein alexander.stein at systec-electronic.com
Wed Aug 4 11:24:53 CEST 2010


Signed-off-by: Alexander Stein <alexander.stein at systec-electronic.com>
---
 arch/arm/include/asm/arch-at91/at91_pit.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/include/asm/arch-at91/at91_pit.h b/arch/arm/include/asm/arch-at91/at91_pit.h
index 5615a02..61aca79 100644
--- a/arch/arm/include/asm/arch-at91/at91_pit.h
+++ b/arch/arm/include/asm/arch-at91/at91_pit.h
@@ -25,7 +25,7 @@ typedef struct at91_pit {
 
 #define		AT91_PIT_MR_IEN		0x02000000
 #define		AT91_PIT_MR_EN		0x01000000
-#define		AT91_PIT_MR_PIV_MASK	(x & 0x000fffff)
+#define		AT91_PIT_MR_PIV_MASK(x)	(x & 0x000fffff)
 #define		AT91_PIT_MR_PIV(x)	(x & AT91_PIT_MR_PIV_MASK)
 
 #ifdef CONFIG_AT91_LEGACY
-- 
1.7.1



More information about the U-Boot mailing list