mirror of https://github.com/thesofproject/sof.git
alloc: Remove the unnecessaries spaces after casts
This commit removes the unnecessaries spaces after casts, fixing the checkpatch error: "No space is necessary after a cast". Signed-off-by: Constantin Raducanu <raducanu.costi@gmail.com>
This commit is contained in:
parent
752f086bdc
commit
9662439b8e
|
@ -23,8 +23,8 @@
|
||||||
|
|
||||||
/* debug to set memory value on every allocation */
|
/* debug to set memory value on every allocation */
|
||||||
#if CONFIG_DEBUG_BLOCK_FREE
|
#if CONFIG_DEBUG_BLOCK_FREE
|
||||||
#define DEBUG_BLOCK_FREE_VALUE_8BIT ((uint8_t) 0xa5)
|
#define DEBUG_BLOCK_FREE_VALUE_8BIT ((uint8_t)0xa5)
|
||||||
#define DEBUG_BLOCK_FREE_VALUE_32BIT ((uint32_t) 0xa5a5a5a5)
|
#define DEBUG_BLOCK_FREE_VALUE_32BIT ((uint32_t)0xa5a5a5a5)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* We have 3 memory pools
|
/* We have 3 memory pools
|
||||||
|
|
Loading…
Reference in New Issue