From: Johan Hovold Date: Thu, 13 May 2010 19:33:09 +0000 (+0200) Subject: USB: ipw: remove dummy port_probe and port_remove X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=55c6d85cabb33461139e430f48b9dea794d46f67;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git USB: ipw: remove dummy port_probe and port_remove Signed-off-by: Johan Hovold Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/serial/ipw.c b/drivers/usb/serial/ipw.c index 18b335e0959c..585ec1e237b6 100644 --- a/drivers/usb/serial/ipw.c +++ b/drivers/usb/serial/ipw.c @@ -405,17 +405,6 @@ static int ipw_write(struct tty_struct *tty, struct usb_serial_port *port, return count; } -static int ipw_probe(struct usb_serial_port *port) -{ - return 0; -} - -static int ipw_disconnect(struct usb_serial_port *port) -{ - usb_set_serial_port_data(port, NULL); - return 0; -} - static struct usb_serial_driver ipw_device = { .driver = { .owner = THIS_MODULE, @@ -428,8 +417,6 @@ static struct usb_serial_driver ipw_device = { .open = ipw_open, .close = ipw_close, .dtr_rts = ipw_dtr_rts, - .port_probe = ipw_probe, - .port_remove = ipw_disconnect, .write = ipw_write, .write_bulk_callback = ipw_write_bulk_callback, .read_bulk_callback = ipw_read_bulk_callback,