From b70b9099f06d5ab68cdbe12b6d150f0d7303becf Mon Sep 17 00:00:00 2001 From: Jes Sorensen Date: Tue, 5 May 2015 18:35:42 -0400 Subject: [PATCH] staging: unisys: Remove some unnecessary parenthesis Signed-off-by: Jes Sorensen Signed-off-by: Benjamin Romer Signed-off-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorchipset/visorchipset_umode.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 */ -- 2.39.5