Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b46d60fc authored by David Brownell's avatar David Brownell Committed by Greg Kroah-Hartman
Browse files

USB: fix usb-serial/generic build warning



Fix annoying build warning when CONFIG_USB_SERIAL_GENERIC is undefined.

  drivers/usb/serial/generic.c:24: warning: `generic_probe' declared `static' but never defined

Signed-off-by: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 8a61499b
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -20,13 +20,14 @@
#include <linux/usb/serial.h>
#include <asm/uaccess.h>

static int generic_probe(struct usb_interface *interface,
			 const struct usb_device_id *id);


static int debug;

#ifdef CONFIG_USB_SERIAL_GENERIC

static int generic_probe(struct usb_interface *interface,
			 const struct usb_device_id *id);

static __u16 vendor  = 0x05f9;
static __u16 product = 0xffff;