diff options
| author | Manoj Sawai <[email protected]> | 2016-12-12 19:29:50 +0000 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2017-01-03 16:33:17 +0100 |
| commit | 64d94cd3c4c18fa45366c67d9ede1be3db7e6fa3 (patch) | |
| tree | e7f23756649c3254bad0cbae785584a7fde24d95 | |
| parent | 8315388d98ef94ca85b9b5b2e2239feb85abfe1c (diff) | |
Staging: ks7010: ks7010_sdio.h: Complex macro not in parentheses
Fixed coding style error. Complex macro not inside parentheses.
Signed-off-by: Manoj Sawai <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/staging/ks7010/ks7010_sdio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/ks7010/ks7010_sdio.h b/drivers/staging/ks7010/ks7010_sdio.h index 0f5fd848e23d..5820b5c9b684 100644 --- a/drivers/staging/ks7010/ks7010_sdio.h +++ b/drivers/staging/ks7010/ks7010_sdio.h @@ -81,7 +81,7 @@ /* AHB Data Window 0x010000-0x01FFFF */ #define DATA_WINDOW 0x010000 -#define WINDOW_SIZE 64*1024 +#define WINDOW_SIZE (64 * 1024) #define KS7010_IRAM_ADDRESS 0x06000000 |