There are no old function interface users left, so the old interface
can be removed.

Signed-off-by: Andrzej Pietrasiewicz <andrze...@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.p...@samsung.com>
---
 drivers/usb/gadget/f_eem.c   |   57 ------------------------------------------
 drivers/usb/gadget/u_ether.h |    1 -
 2 files changed, 0 insertions(+), 58 deletions(-)

diff --git a/drivers/usb/gadget/f_eem.c b/drivers/usb/gadget/f_eem.c
index 6e5828e..d981969 100644
--- a/drivers/usb/gadget/f_eem.c
+++ b/drivers/usb/gadget/f_eem.c
@@ -519,61 +519,6 @@ error:
        return status;
 }
 
-#ifdef USB_FEEM_INCLUDED
-
-static void eem_old_unbind(struct usb_configuration *c, struct usb_function *f)
-{
-       struct f_eem    *eem = func_to_eem(f);
-
-       DBG(c->cdev, "eem unbind\n");
-
-       usb_free_all_descriptors(f);
-       kfree(eem);
-}
-
-/**
- * eem_bind_config - add CDC Ethernet (EEM) network link to a configuration
- * @c: the configuration to support the network link
- * Context: single threaded during gadget setup
- *
- * Returns zero on success, else negative errno.
- *
- * Caller must have called @gether_setup().  Caller is also responsible
- * for calling @gether_cleanup() before module unload.
- */
-int __init eem_bind_config(struct usb_configuration *c, struct eth_dev *dev)
-{
-       struct f_eem    *eem;
-       int             status;
-
-       /* allocate and initialize one new instance */
-       eem = kzalloc(sizeof *eem, GFP_KERNEL);
-       if (!eem)
-               return -ENOMEM;
-
-       eem->port.ioport = dev;
-       eem->port.cdc_filter = DEFAULT_FILTER;
-
-       eem->port.func.name = "cdc_eem";
-       eem->port.func.strings = eem_strings;
-       /* descriptors are per-instance copies */
-       eem->port.func.bind = eem_bind;
-       eem->port.func.unbind = eem_old_unbind;
-       eem->port.func.set_alt = eem_set_alt;
-       eem->port.func.setup = eem_setup;
-       eem->port.func.disable = eem_disable;
-       eem->port.wrap = eem_wrap;
-       eem->port.unwrap = eem_unwrap;
-       eem->port.header_len = EEM_HLEN;
-
-       status = usb_add_function(c, &eem->port.func);
-       if (status)
-               kfree(eem);
-       return status;
-}
-
-#else
-
 static void eem_free_inst(struct usb_function_instance *f)
 {
        struct f_eem_opts *opts;
@@ -643,5 +588,3 @@ struct usb_function *eem_alloc(struct usb_function_instance 
*fi)
 DECLARE_USB_FUNCTION_INIT(eem, eem_alloc_inst, eem_alloc);
 MODULE_LICENSE("GPL");
 MODULE_AUTHOR("David Brownell");
-
-#endif
diff --git a/drivers/usb/gadget/u_ether.h b/drivers/usb/gadget/u_ether.h
index 82adf9f..69b866b 100644
--- a/drivers/usb/gadget/u_ether.h
+++ b/drivers/usb/gadget/u_ether.h
@@ -117,7 +117,6 @@ int geth_bind_config(struct usb_configuration *c, u8 
ethaddr[ETH_ALEN],
                struct eth_dev *dev);
 int ecm_bind_config(struct usb_configuration *c, u8 ethaddr[ETH_ALEN],
                struct eth_dev *dev);
-int eem_bind_config(struct usb_configuration *c, struct eth_dev *dev);
 
 #ifdef USB_ETH_RNDIS
 
-- 
1.7.0.4

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to