From: Jes Sorensen Date: Tue, 5 May 2015 22:35:42 +0000 (-0400) Subject: staging: unisys: Remove some unnecessary parenthesis X-Git-Tag: v4.2-rc1~88^2~856 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=b70b9099f06d5ab68cdbe12b6d150f0d7303becf;p=linux.git staging: unisys: Remove some unnecessary parenthesis Signed-off-by: Jes Sorensen Signed-off-by: Benjamin Romer Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/unisys/visorchipset/visorchipset_umode.h b/drivers/staging/unisys/visorchipset/visorchipset_umode.h index 6cf6eccb3f4a..8af5bf33883c 100644 --- a/drivers/staging/unisys/visorchipset/visorchipset_umode.h +++ b/drivers/staging/unisys/visorchipset/visorchipset_umode.h @@ -29,7 +29,7 @@ /** The user-mode program can access the control channel buffer directly * via this memory map. */ -#define VISORCHIPSET_MMAP_CONTROLCHANOFFSET (0x00000000) -#define VISORCHIPSET_MMAP_CONTROLCHANSIZE (0x00400000) /* 4MB */ +#define VISORCHIPSET_MMAP_CONTROLCHANOFFSET 0x00000000 +#define VISORCHIPSET_MMAP_CONTROLCHANSIZE 0x00400000 /* 4MB */ #endif /* __VISORCHIPSET_UMODE_H */