diff options
author | Sebastian Andrzej Siewior <bigeasy@linutronix.de> | 2012-12-23 15:10:04 -0500 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-01-21 13:52:42 -0500 |
commit | 3249ca22c088c286d6227d8fae9c85a43a8ce9f6 (patch) | |
tree | d6e0cdc2abb6d862af760af9ec7c80691182ec7a /drivers/usb/gadget/dbgp.c | |
parent | 48177cd83792d25a5bab7f887acc47c2c314810e (diff) |
usb: gadget: u_serial: convert into a module
Every user of u_serial has now to select the U_SERIAL symbol instead of
including the file.
There is one limition with this: ports and and gs_tty_driver are global
variables in u_serial. Since all users share them, there can be only one
user loaded at a time i.e. either g_serial or g_nokia.
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/gadget/dbgp.c')
-rw-r--r-- | drivers/usb/gadget/dbgp.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/usb/gadget/dbgp.c b/drivers/usb/gadget/dbgp.c index 87d165028162..41eb98df5644 100644 --- a/drivers/usb/gadget/dbgp.c +++ b/drivers/usb/gadget/dbgp.c | |||
@@ -13,9 +13,7 @@ | |||
13 | #include <linux/usb/ch9.h> | 13 | #include <linux/usb/ch9.h> |
14 | #include <linux/usb/gadget.h> | 14 | #include <linux/usb/gadget.h> |
15 | 15 | ||
16 | #ifdef CONFIG_USB_G_DBGP_SERIAL | 16 | #include "u_serial.h" |
17 | #include "u_serial.c" | ||
18 | #endif | ||
19 | 17 | ||
20 | #define DRIVER_VENDOR_ID 0x0525 /* NetChip */ | 18 | #define DRIVER_VENDOR_ID 0x0525 /* NetChip */ |
21 | #define DRIVER_PRODUCT_ID 0xc0de /* undefined */ | 19 | #define DRIVER_PRODUCT_ID 0xc0de /* undefined */ |