提交 d1412794 编写于 作者: A Andrzej Pietrasiewicz 提交者: Felipe Balbi

usb: gadget: serial: convert to new interface of f_obex

f_obex is now a self-contained module. We need to teach
serial.c about it.
Signed-off-by: NAndrzej Pietrasiewicz <andrzej.p@samsung.com>
Signed-off-by: NKyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: NFelipe Balbi <balbi@ti.com>
上级 1d8fc251
...@@ -766,6 +766,7 @@ config USB_G_SERIAL ...@@ -766,6 +766,7 @@ config USB_G_SERIAL
select USB_U_SERIAL select USB_U_SERIAL
select USB_F_ACM select USB_F_ACM
select USB_F_SERIAL select USB_F_SERIAL
select USB_F_OBEX
select USB_LIBCOMPOSITE select USB_LIBCOMPOSITE
help help
The Serial Gadget talks to the Linux-USB generic serial driver. The Serial Gadget talks to the Linux-USB generic serial driver.
......
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/device.h> #include <linux/device.h>
#include <linux/module.h>
#include <linux/tty.h> #include <linux/tty.h>
#include <linux/tty_flip.h> #include <linux/tty_flip.h>
...@@ -27,18 +28,6 @@ ...@@ -27,18 +28,6 @@
#define GS_LONG_NAME "Gadget Serial" #define GS_LONG_NAME "Gadget Serial"
#define GS_VERSION_NAME GS_LONG_NAME " " GS_VERSION_STR #define GS_VERSION_NAME GS_LONG_NAME " " GS_VERSION_STR
/*-------------------------------------------------------------------------*/
/*
* Kbuild is not very cooperative with respect to linking separately
* compiled library objects into one module. So for now we won't use
* separate compilation ... ensuring init/exit sections work to shrink
* the runtime footprint, and giving us at least some parts of what
* a "gcc --combine ... part1.c part2.c part3.c ... " build would.
*/
#define USBF_OBEX_INCLUDED
#include "f_obex.c"
/*-------------------------------------------------------------------------*/ /*-------------------------------------------------------------------------*/
USB_GADGET_COMPOSITE_OPTIONS(); USB_GADGET_COMPOSITE_OPTIONS();
...@@ -126,17 +115,6 @@ module_param(n_ports, uint, 0); ...@@ -126,17 +115,6 @@ module_param(n_ports, uint, 0);
MODULE_PARM_DESC(n_ports, "number of ports to create, default=1"); MODULE_PARM_DESC(n_ports, "number of ports to create, default=1");
/*-------------------------------------------------------------------------*/ /*-------------------------------------------------------------------------*/
static unsigned char tty_lines[MAX_U_SERIAL_PORTS];
static int __init serial_bind_obex_config(struct usb_configuration *c)
{
unsigned i;
int status = 0;
for (i = 0; i < n_ports && status == 0; i++)
status = obex_bind_config(c, tty_lines[i]);
return status;
}
static struct usb_configuration serial_config_driver = { static struct usb_configuration serial_config_driver = {
/* .label = f(use_acm) */ /* .label = f(use_acm) */
...@@ -199,15 +177,6 @@ static int serial_register_ports(struct usb_composite_dev *cdev, ...@@ -199,15 +177,6 @@ static int serial_register_ports(struct usb_composite_dev *cdev,
static int __init gs_bind(struct usb_composite_dev *cdev) static int __init gs_bind(struct usb_composite_dev *cdev)
{ {
int status; int status;
int cur_line = 0;
if (use_obex) {
for (cur_line = 0; cur_line < n_ports; cur_line++) {
status = gserial_alloc_line(&tty_lines[cur_line]);
if (status)
goto fail;
}
}
/* Allocate string descriptor numbers ... note that string /* Allocate string descriptor numbers ... note that string
* contents can be overridden by the composite_dev glue. * contents can be overridden by the composite_dev glue.
...@@ -232,8 +201,8 @@ static int __init gs_bind(struct usb_composite_dev *cdev) ...@@ -232,8 +201,8 @@ static int __init gs_bind(struct usb_composite_dev *cdev)
"acm"); "acm");
usb_ep_autoconfig_reset(cdev->gadget); usb_ep_autoconfig_reset(cdev->gadget);
} else if (use_obex) } else if (use_obex)
status = usb_add_config(cdev, &serial_config_driver, status = serial_register_ports(cdev, &serial_config_driver,
serial_bind_obex_config); "obex");
else { else {
status = serial_register_ports(cdev, &serial_config_driver, status = serial_register_ports(cdev, &serial_config_driver,
"gser"); "gser");
...@@ -247,9 +216,6 @@ static int __init gs_bind(struct usb_composite_dev *cdev) ...@@ -247,9 +216,6 @@ static int __init gs_bind(struct usb_composite_dev *cdev)
return 0; return 0;
fail: fail:
cur_line--;
while (cur_line >= 0 && use_obex)
gserial_free_line(tty_lines[cur_line--]);
return status; return status;
} }
...@@ -260,8 +226,6 @@ static int gs_unbind(struct usb_composite_dev *cdev) ...@@ -260,8 +226,6 @@ static int gs_unbind(struct usb_composite_dev *cdev)
for (i = 0; i < n_ports; i++) { for (i = 0; i < n_ports; i++) {
usb_put_function(f_serial[i]); usb_put_function(f_serial[i]);
usb_put_function_instance(fi_serial[i]); usb_put_function_instance(fi_serial[i]);
if (use_obex)
gserial_free_line(tty_lines[i]);
} }
return 0; return 0;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册