From: Andreas Kühn Date: Tue, 3 Sep 2024 13:25:15 +0000 (+0200) Subject: usb: chipidea: npcm: Fix coding style with clarification of data type X-Git-Tag: v6.12-rc1~42^2~24 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7793472be315c5bddbb5cabb55e61ea9a7dca755;p=thirdparty%2Fkernel%2Flinux.git usb: chipidea: npcm: Fix coding style with clarification of data type Fixed coding style issue: unsigned to unsigned int. Signed-off-by: Andreas Kühn Acked-by: Peter Chen Link: https://lore.kernel.org/r/20240903132535.15554-1-andreas.kuehn@diekuehnen.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/chipidea/ci_hdrc_npcm.c b/drivers/usb/chipidea/ci_hdrc_npcm.c index c89c68f41ccc0..3e5e05dbda890 100644 --- a/drivers/usb/chipidea/ci_hdrc_npcm.c +++ b/drivers/usb/chipidea/ci_hdrc_npcm.c @@ -18,7 +18,7 @@ struct npcm_udc_data { struct ci_hdrc_platform_data pdata; }; -static int npcm_udc_notify_event(struct ci_hdrc *ci, unsigned event) +static int npcm_udc_notify_event(struct ci_hdrc *ci, unsigned int event) { struct device *dev = ci->dev->parent;