2.4.36-stable kernel tree
Revision | 7ac8fc2163fa2f097016b0692060fce00673c69c (tree) |
---|---|
Zeit | 2007-02-25 16:41:31 |
Autor | Mariusz Kozlowski <m.kozlowski@tuxl...> |
Commiter | Willy Tarreau |
[PATCH] parisc pdc parenthesis fix
Hello,
This patch fixes removes an extra parenthesis in PAT_GET_MOD_PAGES() macro code.
Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl>
@@ -1000,7 +1000,7 @@ int pdc_pat_pd_get_addr_map(unsigned long *actual_len, void *mem_addr, | ||
1000 | 1000 | #define PAT_GET_ENTITY(value) (((value) >> 56) & 0xffUL) |
1001 | 1001 | #define PAT_GET_DVI(value) (((value) >> 48) & 0xffUL) |
1002 | 1002 | #define PAT_GET_IOC(value) (((value) >> 40) & 0xffUL) |
1003 | -#define PAT_GET_MOD_PAGES(value)(((value) & 0xffffffUL) | |
1003 | +#define PAT_GET_MOD_PAGES(value) ((value) & 0xffffffUL) | |
1004 | 1004 | |
1005 | 1005 | #else /* !__LP64__ */ |
1006 | 1006 | /* No PAT support for 32-bit kernels...sorry */ |