diff options
author | Andrzej Pietrasiewicz <andrzej.p@samsung.com> | 2013-05-24 04:23:02 -0400 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-06-10 10:11:33 -0400 |
commit | cbbd14a9021140a306a01f8fcaa645faafae18a5 (patch) | |
tree | e3543fc4458ea386e0d006094e9e08fd6e2ca26a /drivers/usb/gadget/Makefile | |
parent | f1a1823ff24fa4e3412b5078f20021cf40834946 (diff) |
usb: gadget: rndis: convert into module
In order to convert to configfs the usb functions need to be converted
to a new interface and compiled as modules. This patch creates an rndis
module which will be used by the new functions. After all users of
f_rndis are converted to the new interface, this module can be
merged with f_rndis module.
Acked-by: Michal Nazarewicz <mina86@mina86.com>
Signed-off-by: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/gadget/Makefile')
-rw-r--r-- | drivers/usb/gadget/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/gadget/Makefile b/drivers/usb/gadget/Makefile index b6c2bf7a3c2d..7a0463ef3684 100644 --- a/drivers/usb/gadget/Makefile +++ b/drivers/usb/gadget/Makefile | |||
@@ -46,6 +46,8 @@ obj-$(CONFIG_USB_F_SERIAL) += usb_f_serial.o | |||
46 | usb_f_obex-y := f_obex.o | 46 | usb_f_obex-y := f_obex.o |
47 | obj-$(CONFIG_USB_F_OBEX) += usb_f_obex.o | 47 | obj-$(CONFIG_USB_F_OBEX) += usb_f_obex.o |
48 | obj-$(CONFIG_USB_U_ETHER) += u_ether.o | 48 | obj-$(CONFIG_USB_U_ETHER) += u_ether.o |
49 | u_rndis-y := rndis.o | ||
50 | obj-$(CONFIG_USB_U_RNDIS) += u_rndis.o | ||
49 | 51 | ||
50 | # | 52 | # |
51 | # USB gadget drivers | 53 | # USB gadget drivers |