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>
This commit is contained in:
Christian Gromm 2015-10-21 17:50:40 +02:00 committed by Greg Kroah-Hartman
parent 9ac23b344e
commit 16dc374338
2 changed files with 2 additions and 2 deletions

View File

@ -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)
/* -------------------------------------------------------------------------- */

View File

@ -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;