[PATCH] mm/dmapool: use unsigned int instead of unsigned

From: Pintu Kumar
Date: Mon Oct 14 2024 - 14:34:51 EST


This warning is reported by checkpatch.
Fix by simply replacing it with unsigned int.
This make the style clean.

WARNING: Prefer 'unsigned int' to bare use of 'unsigned'
+ unsigned size;

total: 0 errors, 1 warnings, 524 lines checked

Signed-off-by: Pintu Kumar <quic_pintu@xxxxxxxxxxx>
---
mm/dmapool.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mm/dmapool.c b/mm/dmapool.c
index f0bfc6c490f4..9d81d7b3cb05 100644
--- a/mm/dmapool.c
+++ b/mm/dmapool.c
@@ -72,7 +72,7 @@ static DEFINE_MUTEX(pools_reg_lock);
static ssize_t pools_show(struct device *dev, struct device_attribute *attr, char *buf)
{
struct dma_pool *pool;
- unsigned size;
+ unsigned int size;

size = sysfs_emit(buf, "poolinfo - 0.1\n");

--
2.17.1