mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-05 10:06:48 +07:00
USB: kobil_sct: remove unused endpoint address
Remove unused interrupt-in endpoint address from private data. Signed-off-by: Johan Hovold <jhovold@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
8e34c6c2ee
commit
9c0343aa6c
@ -107,7 +107,6 @@ static struct usb_serial_driver * const serial_drivers[] = {
|
||||
|
||||
struct kobil_private {
|
||||
int write_int_endpoint_address;
|
||||
int read_int_endpoint_address;
|
||||
unsigned char buf[KOBIL_BUF_LENGTH]; /* buffer for the APDU to send */
|
||||
int filled; /* index of the last char in buf */
|
||||
int cur_pos; /* index of the next char to send in buf */
|
||||
@ -166,13 +165,6 @@ static int kobil_port_probe(struct usb_serial_port *port)
|
||||
priv->write_int_endpoint_address =
|
||||
endpoint->desc.bEndpointAddress;
|
||||
}
|
||||
if (usb_endpoint_is_int_in(&endpoint->desc)) {
|
||||
dev_dbg(&serial->dev->dev,
|
||||
"%s Found interrupt in endpoint. Address: %d\n",
|
||||
__func__, endpoint->desc.bEndpointAddress);
|
||||
priv->read_int_endpoint_address =
|
||||
endpoint->desc.bEndpointAddress;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user