diff options
author | Johan Hovold <johan@kernel.org> | 2017-03-16 19:13:31 +0300 |
---|---|---|
committer | Johan Hovold <johan@kernel.org> | 2017-03-28 11:54:39 +0300 |
commit | 415d7b3a5407d91fdf47a07fd31d63e4b548651f (patch) | |
tree | 03bada184bb316d49d4622b0a5f373231459fa97 /drivers/usb/serial/usb-serial.c | |
parent | 07814246dd5530860ef758fd9b2b5f2e26472aa2 (diff) | |
download | linux-415d7b3a5407d91fdf47a07fd31d63e4b548651f.tar.xz |
USB: serial: add probe callback to generic driver
Add a probe callback to the generic driver and print the
only-for-testing message there.
This is a first step in getting rid of the CONFIG_USB_SERIAL_GENERIC
ifdef from usb-serial core.
Signed-off-by: Johan Hovold <johan@kernel.org>
Diffstat (limited to 'drivers/usb/serial/usb-serial.c')
-rw-r--r-- | drivers/usb/serial/usb-serial.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/usb/serial/usb-serial.c b/drivers/usb/serial/usb-serial.c index f0761f491c5f..f8ae09e2cff5 100644 --- a/drivers/usb/serial/usb-serial.c +++ b/drivers/usb/serial/usb-serial.c @@ -858,8 +858,6 @@ static int usb_serial_probe(struct usb_interface *interface, retval = -EIO; goto err_free_epds; } - dev_info(ddev, "The \"generic\" usb-serial driver is only for testing and one-off prototypes.\n"); - dev_info(ddev, "Tell linux-usb@vger.kernel.org to add your device to a proper driver.\n"); } #endif if (!num_ports) { |