From: Johan Hovold Date: Tue, 16 Apr 2013 16:01:25 +0000 (+0200) Subject: USB: kobil_sct: remove unused endpoint address X-Git-Tag: upstream/snapshot3+hdmi~5288^2~29 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9c0343aa6cbbb62b8b829c87b15839f35bdebbf2;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git USB: kobil_sct: remove unused endpoint address Remove unused interrupt-in endpoint address from private data. Signed-off-by: Johan Hovold Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/serial/kobil_sct.c b/drivers/usb/serial/kobil_sct.c index da1a372..5bcfd57 100644 --- a/drivers/usb/serial/kobil_sct.c +++ b/drivers/usb/serial/kobil_sct.c @@ -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; }