summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorAndrzej Pietrasiewicz <andrzej.p@samsung.com>2014-01-22 14:58:04 +0100
committerChanho Park <chanho61.park@samsung.com>2014-11-18 11:46:55 +0900
commitb6e17651dba506279d7b5fe9ea7171feead1124b (patch)
tree2438c010aa8bf660516598e7492b26dfddfd117e /drivers
parent4a82fad43f454f6da2ffb8871a45cb95c34ede61 (diff)
downloadlinux-3.10-b6e17651dba506279d7b5fe9ea7171feead1124b.tar.gz
linux-3.10-b6e17651dba506279d7b5fe9ea7171feead1124b.tar.bz2
linux-3.10-b6e17651dba506279d7b5fe9ea7171feead1124b.zip
usb: gadget: temporarily turn off rndis from slp gadget
This fixes build break caused by recently merged removal of compatibility layer in rndis. Signed-off-by: Andrzej Pietrasiewicz <andrzej.p@samsung.com> Change-Id: I11c2d02e2d491f30f8c9936916f627389787a1e5
Diffstat (limited to 'drivers')
-rw-r--r--drivers/usb/gadget/slp.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/usb/gadget/slp.c b/drivers/usb/gadget/slp.c
index 45536b40195..06ac80136bd 100644
--- a/drivers/usb/gadget/slp.c
+++ b/drivers/usb/gadget/slp.c
@@ -154,7 +154,7 @@ struct slp_multi_dev {
};
/* TODO: only enabled 'rndis' and 'sdb'. need to verify more functions */
-static const char *default_funcs[] = {"rndis", "sdb"};
+static const char *default_funcs[] = {"sdb"};
static unsigned slp_multi_nluns;
static struct class *slp_multi_class;
static struct slp_multi_dev *_slp_multi_dev;
@@ -372,6 +372,7 @@ static struct slp_multi_usb_function acm_function = {
.attributes = acm_function_attributes,
};
+#if 0
struct rndis_function_config {
u8 ethaddr[ETH_ALEN];
u32 vendorID;
@@ -612,14 +613,16 @@ static struct slp_multi_usb_function rndis_function = {
.unbind_config = rndis_function_unbind_config,
.attributes = rndis_function_attributes,
};
-
+#endif
/*-------------------------------------------------------------------------*/
/* Supported functions initialization */
static struct slp_multi_usb_function *supported_functions[] = {
&sdb_function,
&acm_function,
+#if 0
&rndis_function,
+#endif
NULL,
};