Commit 915115ca authored by Mariusz Kozlowski's avatar Mariusz Kozlowski Committed by Kyle McMartin

[PARISC] pdcpat remove extra brackets

This patch removes extra brackets.
Signed-off-by: default avatarMariusz Kozlowski <m.kozlowski@tuxland.pl>
Signed-off-by: default avatarKyle McMartin <kyle@parisc-linux.org>
parent f5280cbe
...@@ -250,7 +250,7 @@ struct pdc_pat_pd_addr_map_entry { ...@@ -250,7 +250,7 @@ struct pdc_pat_pd_addr_map_entry {
#define PAT_GET_ENTITY(value) (((value) >> 56) & 0xffUL) #define PAT_GET_ENTITY(value) (((value) >> 56) & 0xffUL)
#define PAT_GET_DVI(value) (((value) >> 48) & 0xffUL) #define PAT_GET_DVI(value) (((value) >> 48) & 0xffUL)
#define PAT_GET_IOC(value) (((value) >> 40) & 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 */ ...@@ -330,7 +330,7 @@ extern int pdc_pat; /* arch/parisc/kernel/inventory.c */
#define PAT_GET_ENTITY(value) (((value) >> 56) & 0xffUL) #define PAT_GET_ENTITY(value) (((value) >> 56) & 0xffUL)
#define PAT_GET_DVI(value) (((value) >> 48) & 0xffUL) #define PAT_GET_DVI(value) (((value) >> 48) & 0xffUL)
#define PAT_GET_IOC(value) (((value) >> 40) & 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__ */ #endif /* __ASSEMBLY__ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment