USB: making the kernel -Wshadow clean - USB & completion
include/linux/usb.h causes a lot of -Wshadow warnings - fix them. include/linux/usb.h:901: warning: declaration of 'complete' shadows a global declaration include/linux/completion.h:52: warning: shadowed declaration is here include/linux/usb.h:932: warning: declaration of 'complete' shadows a global declaration include/linux/completion.h:52: warning: shadowed declaration is here include/linux/usb.h:967: warning: declaration of 'complete' shadows a global declaration include/linux/completion.h:52: warning: shadowed declaration is here Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
066202dd48
commit
3d5b2510f6
@@ -932,7 +932,7 @@ struct urb
|
|||||||
* @setup_packet: pointer to the setup_packet buffer
|
* @setup_packet: pointer to the setup_packet buffer
|
||||||
* @transfer_buffer: pointer to the transfer buffer
|
* @transfer_buffer: pointer to the transfer buffer
|
||||||
* @buffer_length: length of the transfer buffer
|
* @buffer_length: length of the transfer buffer
|
||||||
* @complete: pointer to the usb_complete_t function
|
* @complete_fn: pointer to the usb_complete_t function
|
||||||
* @context: what to set the urb context to.
|
* @context: what to set the urb context to.
|
||||||
*
|
*
|
||||||
* Initializes a control urb with the proper information needed to submit
|
* Initializes a control urb with the proper information needed to submit
|
||||||
@@ -944,7 +944,7 @@ static inline void usb_fill_control_urb (struct urb *urb,
|
|||||||
unsigned char *setup_packet,
|
unsigned char *setup_packet,
|
||||||
void *transfer_buffer,
|
void *transfer_buffer,
|
||||||
int buffer_length,
|
int buffer_length,
|
||||||
usb_complete_t complete,
|
usb_complete_t complete_fn,
|
||||||
void *context)
|
void *context)
|
||||||
{
|
{
|
||||||
spin_lock_init(&urb->lock);
|
spin_lock_init(&urb->lock);
|
||||||
@@ -953,7 +953,7 @@ static inline void usb_fill_control_urb (struct urb *urb,
|
|||||||
urb->setup_packet = setup_packet;
|
urb->setup_packet = setup_packet;
|
||||||
urb->transfer_buffer = transfer_buffer;
|
urb->transfer_buffer = transfer_buffer;
|
||||||
urb->transfer_buffer_length = buffer_length;
|
urb->transfer_buffer_length = buffer_length;
|
||||||
urb->complete = complete;
|
urb->complete = complete_fn;
|
||||||
urb->context = context;
|
urb->context = context;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -964,7 +964,7 @@ static inline void usb_fill_control_urb (struct urb *urb,
|
|||||||
* @pipe: the endpoint pipe
|
* @pipe: the endpoint pipe
|
||||||
* @transfer_buffer: pointer to the transfer buffer
|
* @transfer_buffer: pointer to the transfer buffer
|
||||||
* @buffer_length: length of the transfer buffer
|
* @buffer_length: length of the transfer buffer
|
||||||
* @complete: pointer to the usb_complete_t function
|
* @complete_fn: pointer to the usb_complete_t function
|
||||||
* @context: what to set the urb context to.
|
* @context: what to set the urb context to.
|
||||||
*
|
*
|
||||||
* Initializes a bulk urb with the proper information needed to submit it
|
* Initializes a bulk urb with the proper information needed to submit it
|
||||||
@@ -975,7 +975,7 @@ static inline void usb_fill_bulk_urb (struct urb *urb,
|
|||||||
unsigned int pipe,
|
unsigned int pipe,
|
||||||
void *transfer_buffer,
|
void *transfer_buffer,
|
||||||
int buffer_length,
|
int buffer_length,
|
||||||
usb_complete_t complete,
|
usb_complete_t complete_fn,
|
||||||
void *context)
|
void *context)
|
||||||
{
|
{
|
||||||
spin_lock_init(&urb->lock);
|
spin_lock_init(&urb->lock);
|
||||||
@@ -983,7 +983,7 @@ static inline void usb_fill_bulk_urb (struct urb *urb,
|
|||||||
urb->pipe = pipe;
|
urb->pipe = pipe;
|
||||||
urb->transfer_buffer = transfer_buffer;
|
urb->transfer_buffer = transfer_buffer;
|
||||||
urb->transfer_buffer_length = buffer_length;
|
urb->transfer_buffer_length = buffer_length;
|
||||||
urb->complete = complete;
|
urb->complete = complete_fn;
|
||||||
urb->context = context;
|
urb->context = context;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -994,7 +994,7 @@ static inline void usb_fill_bulk_urb (struct urb *urb,
|
|||||||
* @pipe: the endpoint pipe
|
* @pipe: the endpoint pipe
|
||||||
* @transfer_buffer: pointer to the transfer buffer
|
* @transfer_buffer: pointer to the transfer buffer
|
||||||
* @buffer_length: length of the transfer buffer
|
* @buffer_length: length of the transfer buffer
|
||||||
* @complete: pointer to the usb_complete_t function
|
* @complete_fn: pointer to the usb_complete_t function
|
||||||
* @context: what to set the urb context to.
|
* @context: what to set the urb context to.
|
||||||
* @interval: what to set the urb interval to, encoded like
|
* @interval: what to set the urb interval to, encoded like
|
||||||
* the endpoint descriptor's bInterval value.
|
* the endpoint descriptor's bInterval value.
|
||||||
@@ -1010,7 +1010,7 @@ static inline void usb_fill_int_urb (struct urb *urb,
|
|||||||
unsigned int pipe,
|
unsigned int pipe,
|
||||||
void *transfer_buffer,
|
void *transfer_buffer,
|
||||||
int buffer_length,
|
int buffer_length,
|
||||||
usb_complete_t complete,
|
usb_complete_t complete_fn,
|
||||||
void *context,
|
void *context,
|
||||||
int interval)
|
int interval)
|
||||||
{
|
{
|
||||||
@@ -1019,7 +1019,7 @@ static inline void usb_fill_int_urb (struct urb *urb,
|
|||||||
urb->pipe = pipe;
|
urb->pipe = pipe;
|
||||||
urb->transfer_buffer = transfer_buffer;
|
urb->transfer_buffer = transfer_buffer;
|
||||||
urb->transfer_buffer_length = buffer_length;
|
urb->transfer_buffer_length = buffer_length;
|
||||||
urb->complete = complete;
|
urb->complete = complete_fn;
|
||||||
urb->context = context;
|
urb->context = context;
|
||||||
if (dev->speed == USB_SPEED_HIGH)
|
if (dev->speed == USB_SPEED_HIGH)
|
||||||
urb->interval = 1 << (interval - 1);
|
urb->interval = 1 << (interval - 1);
|
||||||
|
Reference in New Issue
Block a user