diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2017-06-27 21:51:20 +0200 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2017-06-28 00:23:18 +0000 |
commit | 70083a1de9e12d8dbd3ba70e7a36a7282090f0e0 (patch) | |
tree | cbd182331cc2d5f5248669d95d179212ec6796c2 /payloads/libpayload/liblz4 | |
parent | 42b37f537ff59eb28b85f99cc592d14724788575 (diff) |
payloads: Add whitespace around '<<'
Change-Id: I0659f6ec59fb808b4cedf57d60d737c13c250042
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/20396
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'payloads/libpayload/liblz4')
-rw-r--r-- | payloads/libpayload/liblz4/lz4.c.inc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/payloads/libpayload/liblz4/lz4.c.inc b/payloads/libpayload/liblz4/lz4.c.inc index b3be4e5b44..baa911021d 100644 --- a/payloads/libpayload/liblz4/lz4.c.inc +++ b/payloads/libpayload/liblz4/lz4.c.inc @@ -64,17 +64,17 @@ static void LZ4_wildCopy(void* dstPtr, const void* srcPtr, void* dstEnd) #define MFLIMIT (WILDCOPYLENGTH+MINMATCH) static const int LZ4_minLength = (MFLIMIT+1); -#define KB *(1 <<10) -#define MB *(1 <<20) -#define GB *(1U<<30) +#define KB *(1 << 10) +#define MB *(1 << 20) +#define GB *(1U << 30) #define MAXD_LOG 16 #define MAX_DISTANCE ((1 << MAXD_LOG) - 1) #define ML_BITS 4 -#define ML_MASK ((1U<<ML_BITS)-1) +#define ML_MASK ((1U << ML_BITS)-1) #define RUN_BITS (8-ML_BITS) -#define RUN_MASK ((1U<<RUN_BITS)-1) +#define RUN_MASK ((1U << RUN_BITS)-1) /************************************** |