mirror of https://github.com/thesofproject/sof.git
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:
parent
0f93ec1aef
commit
0a1c8b65af
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue