mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-25 00:52:45 -04:00
usb: usbip:checkpatch; fix bare use of unsigned
This patch fixes the following checkpatch warning for usbip files WARNING: Prefer 'unsigned int' to bare use of 'unsigned' Signed-off-by: Jai Krishna <rjk1024@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
5864f7c113
commit
1f0c41dd0c
@@ -242,10 +242,10 @@ static const struct usb_gadget_ops vgadget_ops = {
|
||||
static int vep_enable(struct usb_ep *_ep,
|
||||
const struct usb_endpoint_descriptor *desc)
|
||||
{
|
||||
struct vep *ep;
|
||||
struct vudc *udc;
|
||||
unsigned maxp;
|
||||
unsigned long flags;
|
||||
struct vep *ep;
|
||||
struct vudc *udc;
|
||||
unsigned int maxp;
|
||||
unsigned long flags;
|
||||
|
||||
ep = to_vep(_ep);
|
||||
udc = ep_to_vudc(ep);
|
||||
|
||||
Reference in New Issue
Block a user