[PATCH] USB: Fix kmalloc's flags type in USB
Greg, This patch fixes the kmalloc() flags argument type in USB subsystem; hopefully all of its occurences. The patch was made against patch-2.6.12-git2 from Jun 20. Cleanup of flags for kmalloc() in USB subsystem. Signed-off-by: Olav Kongas <ok@artecdesign.ee> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
17f8bb7312
commit
5db539e49f
@@ -60,7 +60,7 @@ void usb_init_urb(struct urb *urb)
|
||||
*
|
||||
* The driver must call usb_free_urb() when it is finished with the urb.
|
||||
*/
|
||||
struct urb *usb_alloc_urb(int iso_packets, int mem_flags)
|
||||
struct urb *usb_alloc_urb(int iso_packets, unsigned mem_flags)
|
||||
{
|
||||
struct urb *urb;
|
||||
|
||||
@@ -224,7 +224,7 @@ struct urb * usb_get_urb(struct urb *urb)
|
||||
* GFP_NOIO, unless b) or c) apply
|
||||
*
|
||||
*/
|
||||
int usb_submit_urb(struct urb *urb, int mem_flags)
|
||||
int usb_submit_urb(struct urb *urb, unsigned mem_flags)
|
||||
{
|
||||
int pipe, temp, max;
|
||||
struct usb_device *dev;
|
||||
|
Reference in New Issue
Block a user