]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[PARISC] pdcpat remove extra brackets
authorMariusz Kozlowski <m.kozlowski@tuxland.pl>
Fri, 8 Dec 2006 02:37:11 +0000 (21:37 -0500)
committerKyle McMartin <kyle@ubuntu.com>
Fri, 8 Dec 2006 05:34:46 +0000 (00:34 -0500)
This patch removes extra brackets.

Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl>
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
include/asm-parisc/pdcpat.h

index b4b34c0e8c1a81140fef4f6422b77b95c7295fd7..3316dcd50f4280be91e58620a0fd5ac7ac7c6a69 100644 (file)
@@ -250,7 +250,7 @@ struct pdc_pat_pd_addr_map_entry {
 #define PAT_GET_ENTITY(value)  (((value) >> 56) & 0xffUL)
 #define PAT_GET_DVI(value)     (((value) >> 48) & 0xffUL)
 #define PAT_GET_IOC(value)     (((value) >> 40) & 0xffUL)
-#define PAT_GET_MOD_PAGES(value)(((value) & 0xffffffUL)
+#define PAT_GET_MOD_PAGES(value) ((value) & 0xffffffUL)
 
 
 /*
@@ -330,7 +330,7 @@ extern int pdc_pat;     /* arch/parisc/kernel/inventory.c */
 #define PAT_GET_ENTITY(value)  (((value) >> 56) & 0xffUL)
 #define PAT_GET_DVI(value)     (((value) >> 48) & 0xffUL)
 #define PAT_GET_IOC(value)     (((value) >> 40) & 0xffUL)
-#define PAT_GET_MOD_PAGES(value)(((value) & 0xffffffUL)
+#define PAT_GET_MOD_PAGES(value) ((value) & 0xffffffUL)
 
 #endif /* __ASSEMBLY__ */