diff options
author | Jes Sorensen <Jes.Sorensen@redhat.com> | 2015-05-05 18:35:42 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-05-08 15:25:53 +0200 |
commit | b70b9099f06d5ab68cdbe12b6d150f0d7303becf (patch) | |
tree | 89139d6c72980bace2ca57e31dae17453ce674ef /drivers/staging | |
parent | 5981cc995767803d19e9fe01aa82a0da51fc6c67 (diff) |
staging: unisys: Remove some unnecessary parenthesis
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/unisys/visorchipset/visorchipset_umode.h | 4 |
1 files 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 */ |