Skip to content

Commit dda02fd

Browse files
Weijie Yangmszyprow
authored andcommitted
mm, cma: make parameters order consistent in func declaration and definition
In the current code, the base and size parameters order is not consistent in functions declaration and definition. If someone calls these functions according to the declaration parameters order in cma.h, he will run into some bug and it's hard to find the reason. This patch makes the parameters order consistent in functions declaration and definition. Signed-off-by: Weijie Yang <[email protected]> Acked-by: Michal Nazarewicz <[email protected]> Signed-off-by: Marek Szyprowski <[email protected]>
1 parent 56fa4f6 commit dda02fd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

include/linux/cma.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ struct cma;
1818
extern phys_addr_t cma_get_base(struct cma *cma);
1919
extern unsigned long cma_get_size(struct cma *cma);
2020

21-
extern int __init cma_declare_contiguous(phys_addr_t size,
22-
phys_addr_t base, phys_addr_t limit,
21+
extern int __init cma_declare_contiguous(phys_addr_t base,
22+
phys_addr_t size, phys_addr_t limit,
2323
phys_addr_t alignment, unsigned int order_per_bit,
2424
bool fixed, struct cma **res_cma);
25-
extern int cma_init_reserved_mem(phys_addr_t size,
26-
phys_addr_t base, int order_per_bit,
25+
extern int cma_init_reserved_mem(phys_addr_t base,
26+
phys_addr_t size, int order_per_bit,
2727
struct cma **res_cma);
2828
extern struct page *cma_alloc(struct cma *cma, int count, unsigned int align);
2929
extern bool cma_release(struct cma *cma, struct page *pages, int count);

0 commit comments

Comments
 (0)