2006-11-30 09:21:21

by Mariusz Kozlowski

[permalink] [raw]
Subject: [PATCH] parisc: pdcpat remove extra brackets

Hello,

This patch removes extra brackets.

Signed-off-by: Mariusz Kozlowski <[email protected]>

include/asm-parisc/pdcpat.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

--- linux-2.6.19-rc6-mm2-a/include/asm-parisc/pdcpat.h 2006-11-16 05:03:40.000000000 +0100
+++ linux-2.6.19-rc6-mm2-b/include/asm-parisc/pdcpat.h 2006-11-30 01:09:47.000000000 +0100
@@ -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/k
#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__ */



--
Regards,

Mariusz Kozlowski


2006-12-08 02:41:20

by Kyle McMartin

[permalink] [raw]
Subject: Re: [parisc-linux] [PATCH] parisc: pdcpat remove extra brackets

On Thu, Nov 30, 2006 at 10:20:50AM +0100, Mariusz Kozlowski wrote:
> Hello,
>
> This patch removes extra brackets.
>
> Signed-off-by: Mariusz Kozlowski <[email protected]>
>
> include/asm-parisc/pdcpat.h | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>

applied, thanks.