at91_pit: Fix AT91_PIT_MR_PIV_MASK macro
authorAlexander Stein <alexander.stein@systec-electronic.com>
Wed, 4 Aug 2010 09:24:53 +0000 (11:24 +0200)
committerReinhard Meyer <u-boot@emk-elektronik.de>
Fri, 3 Sep 2010 14:26:45 +0000 (16:26 +0200)
Signed-off-by: Alexander Stein <alexander.stein@systec-electronic.com>
arch/arm/include/asm/arch-at91/at91_pit.h

index 5615a02..61aca79 100644 (file)
@@ -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