diff mbox series

mm/dmapool: use unsigned int instead of unsigned

Message ID 20241014183349.21763-1-quic_pintu@quicinc.com (mailing list archive)
State New
Headers show
Series mm/dmapool: use unsigned int instead of unsigned | expand

Commit Message

Pintu Kumar Oct. 14, 2024, 6:33 p.m. UTC
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@quicinc.com>
---
 mm/dmapool.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

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");