mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-06 12:44:14 +08:00
staging: vt6656: Remove pointer cast to urb->context.
Remove unnecessary cast to void * urb->context Reported-by: Joe Perches <joe@perches.com> Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0b787d713b
commit
599e4b5ca8
@ -347,7 +347,7 @@ int PIPEnsInterruptRead(struct vnt_private *priv)
|
||||
|
||||
static void s_nsInterruptUsbIoCompleteRead(struct urb *urb)
|
||||
{
|
||||
struct vnt_private *priv = (struct vnt_private *)urb->context;
|
||||
struct vnt_private *priv = urb->context;
|
||||
int status;
|
||||
|
||||
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
|
||||
@ -465,7 +465,7 @@ int PIPEnsBulkInUsbRead(struct vnt_private *priv, struct vnt_rcb *rcb)
|
||||
|
||||
static void s_nsBulkInUsbIoCompleteRead(struct urb *urb)
|
||||
{
|
||||
struct vnt_rcb *rcb = (struct vnt_rcb *)urb->context;
|
||||
struct vnt_rcb *rcb = urb->context;
|
||||
struct vnt_private *priv = rcb->pDevice;
|
||||
int re_alloc_skb = false;
|
||||
|
||||
@ -592,8 +592,7 @@ int PIPEnsSendBulkOut(struct vnt_private *priv,
|
||||
|
||||
static void s_nsBulkOutIoCompleteWrite(struct urb *urb)
|
||||
{
|
||||
struct vnt_usb_send_context *context =
|
||||
(struct vnt_usb_send_context *)urb->context;
|
||||
struct vnt_usb_send_context *context = urb->context;
|
||||
struct vnt_private *priv = context->pDevice;
|
||||
u8 context_type = context->type;
|
||||
unsigned long buf_len = context->uBufLen;
|
||||
|
Loading…
Reference in New Issue
Block a user