diff options
Diffstat (limited to 'drivers/usb/host/isp116x-hcd.c')
-rw-r--r-- | drivers/usb/host/isp116x-hcd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/host/isp116x-hcd.c b/drivers/usb/host/isp116x-hcd.c index 3f2cea21efc5..50b1970fe6b6 100644 --- a/drivers/usb/host/isp116x-hcd.c +++ b/drivers/usb/host/isp116x-hcd.c | |||
@@ -693,7 +693,7 @@ static int balance(struct isp116x *isp116x, u16 period, u16 load) | |||
693 | 693 | ||
694 | static int isp116x_urb_enqueue(struct usb_hcd *hcd, | 694 | static int isp116x_urb_enqueue(struct usb_hcd *hcd, |
695 | struct usb_host_endpoint *hep, struct urb *urb, | 695 | struct usb_host_endpoint *hep, struct urb *urb, |
696 | int mem_flags) | 696 | unsigned mem_flags) |
697 | { | 697 | { |
698 | struct isp116x *isp116x = hcd_to_isp116x(hcd); | 698 | struct isp116x *isp116x = hcd_to_isp116x(hcd); |
699 | struct usb_device *udev = urb->dev; | 699 | struct usb_device *udev = urb->dev; |
@@ -715,7 +715,7 @@ static int isp116x_urb_enqueue(struct usb_hcd *hcd, | |||
715 | } | 715 | } |
716 | /* avoid all allocations within spinlocks: request or endpoint */ | 716 | /* avoid all allocations within spinlocks: request or endpoint */ |
717 | if (!hep->hcpriv) { | 717 | if (!hep->hcpriv) { |
718 | ep = kcalloc(1, sizeof *ep, (__force unsigned)mem_flags); | 718 | ep = kcalloc(1, sizeof *ep, mem_flags); |
719 | if (!ep) | 719 | if (!ep) |
720 | return -ENOMEM; | 720 | return -ENOMEM; |
721 | } | 721 | } |