alloc: Match alignment with open parenthesis

Match alignment with open parenthesis to
maintain the coding style.

Reported by checkpatch.pl

Signed-off-by: Shreeya Patel <shreeya.patel23498@gmail.com>
This commit is contained in:
Shreeya Patel 2020-03-23 02:47:42 +05:30 committed by Janusz Jankowski
parent 0f93ec1aef
commit 0a1c8b65af
1 changed files with 2 additions and 2 deletions

View File

@ -209,7 +209,7 @@ static void *align_ptr(struct mm_heap *heap, uint32_t alignment,
/* allocate single block */
static void *alloc_block(struct mm_heap *heap, int level,
uint32_t caps, uint32_t alignment)
uint32_t caps, uint32_t alignment)
{
struct block_map *map = &heap->map[level];
struct block_hdr *hdr;
@ -247,7 +247,7 @@ static void *alloc_block(struct mm_heap *heap, int level,
/* allocates continuous blocks */
static void *alloc_cont_blocks(struct mm_heap *heap, int level,
uint32_t caps, size_t bytes, uint32_t alignment)
uint32_t caps, size_t bytes, uint32_t alignment)
{
struct block_map *map = &heap->map[level];
struct block_hdr *hdr;