* [PATCH] mailbox: use 'unsigned int' instead of 'unsigned'
@ 2026-05-04 17:10 Lucas Poupeau
0 siblings, 0 replies; only message in thread
From: Lucas Poupeau @ 2026-05-04 17:10 UTC (permalink / raw)
To: jassisinghbrar; +Cc: linux-kernel, Lucas Poupeau
Replace 'unsigned' with 'unsigned int' to comply with the Linux
kernel coding style and improve code consistency.
Reported by checkpatch.pl.
Signed-off-by: Lucas Poupeau <lucasp.linux@gmail.com>
---
drivers/mailbox/arm_mhu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mailbox/arm_mhu.c b/drivers/mailbox/arm_mhu.c
index 0950b7bce184..b86435120098 100644
--- a/drivers/mailbox/arm_mhu.c
+++ b/drivers/mailbox/arm_mhu.c
@@ -26,7 +26,7 @@
#define MHU_CHANS 3
struct mhu_link {
- unsigned irq;
+ unsigned int irq;
void __iomem *tx_reg;
void __iomem *rx_reg;
};
--
2.54.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-05-04 17:10 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-04 17:10 [PATCH] mailbox: use 'unsigned int' instead of 'unsigned' Lucas Poupeau
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox