diff options
author | Christian Gromm <christian.gromm@microchip.com> | 2015-10-21 17:50:40 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-10-24 19:08:16 -0700 |
commit | 16dc374338b0124c937c0dda4588b06a4c9bd708 (patch) | |
tree | 37b9ce91562fb79efb37bad7558fb9e4ab99a777 /drivers/staging/most | |
parent | 9ac23b344e72f21cc832c5f02744ab86e9210d12 (diff) | |
download | linux-16dc374338b0124c937c0dda4588b06a4c9bd708.tar.gz linux-16dc374338b0124c937c0dda4588b06a4c9bd708.tar.bz2 linux-16dc374338b0124c937c0dda4588b06a4c9bd708.zip |
staging: most: put spaces around operator
This patch puts spaces around the asterisk operator. It is needed to
prevent checkpatch from reporting an issue.
Signed-off-by: Christian Gromm <christian.gromm@microchip.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/most')
-rw-r--r-- | drivers/staging/most/hdm-dim2/dim2_hal.c | 2 | ||||
-rw-r--r-- | drivers/staging/most/hdm-dim2/dim2_hdm.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/most/hdm-dim2/dim2_hal.c b/drivers/staging/most/hdm-dim2/dim2_hal.c index 6440d0ab2af4..4c1104de36fe 100644 --- a/drivers/staging/most/hdm-dim2/dim2_hal.c +++ b/drivers/staging/most/hdm-dim2/dim2_hal.c @@ -58,7 +58,7 @@ #define MLB_CAT 0x80 #define AHB_CAT 0x88 -#define DBR_SIZE (16*1024) /* specified by IP */ +#define DBR_SIZE (16 * 1024) /* specified by IP */ #define DBR_BLOCK_SIZE (DBR_SIZE / 32 / DBR_MAP_SIZE) /* -------------------------------------------------------------------------- */ diff --git a/drivers/staging/most/hdm-dim2/dim2_hdm.c b/drivers/staging/most/hdm-dim2/dim2_hdm.c index 58a85146b429..c912a6e1159b 100644 --- a/drivers/staging/most/hdm-dim2/dim2_hdm.c +++ b/drivers/staging/most/hdm-dim2/dim2_hdm.c @@ -37,7 +37,7 @@ #define MAX_BUFFERS_PACKET 32 #define MAX_BUFFERS_STREAMING 32 #define MAX_BUF_SIZE_PACKET 2048 -#define MAX_BUF_SIZE_STREAMING (8*1024) +#define MAX_BUF_SIZE_STREAMING (8 * 1024) /* command line parameter to select clock speed */ static char *clock_speed; |