USB: remove unnecessary type casting of urb->context
urb->context code cleanup Signed-off-by: Ming Lei <tom.leiming@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Este cometimento está contido em:

cometido por
Greg Kroah-Hartman

ascendente
a5b6f60c5a
cometimento
cdc9779228
@@ -300,7 +300,7 @@ static int cyberjack_write_room( struct usb_serial_port *port )
|
||||
|
||||
static void cyberjack_read_int_callback( struct urb *urb )
|
||||
{
|
||||
struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
|
||||
struct usb_serial_port *port = urb->context;
|
||||
struct cyberjack_private *priv = usb_get_serial_port_data(port);
|
||||
unsigned char *data = urb->transfer_buffer;
|
||||
int status = urb->status;
|
||||
@@ -357,7 +357,7 @@ resubmit:
|
||||
|
||||
static void cyberjack_read_bulk_callback (struct urb *urb)
|
||||
{
|
||||
struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
|
||||
struct usb_serial_port *port = urb->context;
|
||||
struct cyberjack_private *priv = usb_get_serial_port_data(port);
|
||||
struct tty_struct *tty;
|
||||
unsigned char *data = urb->transfer_buffer;
|
||||
@@ -409,7 +409,7 @@ static void cyberjack_read_bulk_callback (struct urb *urb)
|
||||
|
||||
static void cyberjack_write_bulk_callback (struct urb *urb)
|
||||
{
|
||||
struct usb_serial_port *port = (struct usb_serial_port *)urb->context;
|
||||
struct usb_serial_port *port = urb->context;
|
||||
struct cyberjack_private *priv = usb_get_serial_port_data(port);
|
||||
int status = urb->status;
|
||||
|
||||
|
Criar uma nova questão referindo esta
Bloquear um utilizador