diff options
| author | Andreas Kühn <andreas.kuehn@diekuehnen.com> | 2024-09-03 15:25:15 +0200 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-09-11 15:34:49 +0200 |
| commit | 7793472be315c5bddbb5cabb55e61ea9a7dca755 (patch) | |
| tree | ff556f76f1fb8df15fa8383ef0730fa1d29686cf /drivers/usb/chipidea | |
| parent | usb: common: Switch to device_property_match_property_string() (diff) | |
| download | linux-7793472be315c5bddbb5cabb55e61ea9a7dca755.tar.gz linux-7793472be315c5bddbb5cabb55e61ea9a7dca755.zip | |
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 <andreas.kuehn@diekuehnen.com>
Acked-by: Peter Chen <peter.chen@kernel.org>
Link: https://lore.kernel.org/r/20240903132535.15554-1-andreas.kuehn@diekuehnen.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/chipidea')
| -rw-r--r-- | drivers/usb/chipidea/ci_hdrc_npcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/chipidea/ci_hdrc_npcm.c b/drivers/usb/chipidea/ci_hdrc_npcm.c index c89c68f41ccc..3e5e05dbda89 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; |
