alloc: Add spaces around operator '/'

This commit adds spaces around the operator '/', fixing the checkpatch
error: "spaces preferred around that '/'".

Signed-off-by: Constantin Raducanu <raducanu.costi@gmail.com>
This commit is contained in:
Constantin Raducanu 2020-03-04 18:16:11 +02:00 committed by Liam Girdwood
parent 89ae27e3f4
commit ab5be85cb9
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ static void validate_memory(void *ptr, size_t size)
uint32_t *ptr_32 = ptr;
int i, not_matching = 0;
for (i = 0; i < size/4; i++) {
for (i = 0; i < size / 4; i++) {
if (ptr_32[i] != DEBUG_BLOCK_FREE_VALUE_32BIT)
not_matching = 1;
}