aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-parisc/pdcpat.h
diff options
context:
space:
mode:
authorMariusz Kozlowski <m.kozlowski@tuxland.pl>2006-12-07 21:37:11 -0500
committerKyle McMartin <kyle@ubuntu.com>2006-12-08 00:34:46 -0500
commit915115ca40989d7efb62689b42fd05b55cd9ac07 (patch)
tree7cb18583b10cd65d132dd0038579d999315bb4a8 /include/asm-parisc/pdcpat.h
parentf5280cbe8348eb5824885f3144483cec858ec8ed (diff)
[PARISC] pdcpat remove extra brackets
This patch removes extra brackets. Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl> Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
Diffstat (limited to 'include/asm-parisc/pdcpat.h')
-rw-r--r--include/asm-parisc/pdcpat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-parisc/pdcpat.h b/include/asm-parisc/pdcpat.h
index b4b34c0e8c1a..3316dcd50f42 100644
--- a/include/asm-parisc/pdcpat.h
+++ b/include/asm-parisc/pdcpat.h
@@ -250,7 +250,7 @@ struct pdc_pat_pd_addr_map_entry {
250#define PAT_GET_ENTITY(value) (((value) >> 56) & 0xffUL) 250#define PAT_GET_ENTITY(value) (((value) >> 56) & 0xffUL)
251#define PAT_GET_DVI(value) (((value) >> 48) & 0xffUL) 251#define PAT_GET_DVI(value) (((value) >> 48) & 0xffUL)
252#define PAT_GET_IOC(value) (((value) >> 40) & 0xffUL) 252#define PAT_GET_IOC(value) (((value) >> 40) & 0xffUL)
253#define PAT_GET_MOD_PAGES(value)(((value) & 0xffffffUL) 253#define PAT_GET_MOD_PAGES(value) ((value) & 0xffffffUL)
254 254
255 255
256/* 256/*
@@ -330,7 +330,7 @@ extern int pdc_pat; /* arch/parisc/kernel/inventory.c */
330#define PAT_GET_ENTITY(value) (((value) >> 56) & 0xffUL) 330#define PAT_GET_ENTITY(value) (((value) >> 56) & 0xffUL)
331#define PAT_GET_DVI(value) (((value) >> 48) & 0xffUL) 331#define PAT_GET_DVI(value) (((value) >> 48) & 0xffUL)
332#define PAT_GET_IOC(value) (((value) >> 40) & 0xffUL) 332#define PAT_GET_IOC(value) (((value) >> 40) & 0xffUL)
333#define PAT_GET_MOD_PAGES(value)(((value) & 0xffffffUL) 333#define PAT_GET_MOD_PAGES(value) ((value) & 0xffffffUL)
334 334
335#endif /* __ASSEMBLY__ */ 335#endif /* __ASSEMBLY__ */
336 336