diff mbox series

mm: Change type of cma_area_count to unsigned int.

Message ID tencent_1E5E3AA25C261196D8C1F7097F130E382008@qq.com (mailing list archive)
State New
Headers show
Series mm: Change type of cma_area_count to unsigned int. | expand

Commit Message

Jiale Yang Nov. 20, 2024, 11:01 a.m. UTC
Prefer 'unsigned int' over plain 'unsigned'. Also make it
consistent with mm/cma.c

Signed-off-by: Jiale Yang <295107659@qq.com>
---
 mm/cma.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/mm/cma.h b/mm/cma.h
index ad61cc6dd..8485ef893 100644
--- a/mm/cma.h
+++ b/mm/cma.h
@@ -36,7 +36,7 @@  struct cma {
 };
 
 extern struct cma cma_areas[MAX_CMA_AREAS];
-extern unsigned cma_area_count;
+extern unsigned int cma_area_count;
 
 static inline unsigned long cma_bitmap_maxno(struct cma *cma)
 {