From: Anchal Jain Date: Wed, 14 Sep 2016 18:08:04 +0000 (+0530) Subject: staging: emxx_udc: Fix unsigned int to bare use of unsigned X-Git-Tag: v4.9-rc1~119^2~568 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=190b95170daa713fbd1a8ad53e266aa1139678be;p=thirdparty%2Flinux.git staging: emxx_udc: Fix unsigned int to bare use of unsigned This is a patch to fixes up a WARNING: Prefer 'unsigned int' to bare use of 'unsigned' found by the checkpatch.pl tool Signed-off-by: Anchal Jain Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/emxx_udc/emxx_udc.h b/drivers/staging/emxx_udc/emxx_udc.h index 39769e3a801cb..789bfb97143cf 100644 --- a/drivers/staging/emxx_udc/emxx_udc.h +++ b/drivers/staging/emxx_udc/emxx_udc.h @@ -586,7 +586,7 @@ struct nbu2ss_udc { unsigned remote_wakeup:1; unsigned udc_enabled:1; - unsigned mA; + unsigned int mA; u32 curr_config; /* Current Configuration Number */