summaryrefslogtreecommitdiff
path: root/drivers/usb
diff options
context:
space:
mode:
authorJacek Bukarewicz <j.bukarewicz@samsung.com>2014-02-14 15:22:16 +0100
committerChanho Park <chanho61.park@samsung.com>2014-03-20 17:43:50 +0900
commitfc56bfd0be978e64bd3b80fe70b6fa96d8795554 (patch)
treeeb4f26e45e8ff558469638e4fa7256b04290db9d /drivers/usb
parent39fc8fc9b50ca01ce5a4641c1fdfe64a7e53103a (diff)
downloadlinux-3.10-fc56bfd0be978e64bd3b80fe70b6fa96d8795554.tar.gz
linux-3.10-fc56bfd0be978e64bd3b80fe70b6fa96d8795554.tar.bz2
linux-3.10-fc56bfd0be978e64bd3b80fe70b6fa96d8795554.zip
usb: gadget: Enable rndis in the slp gadget driver
Rndis was disabled temporarily in commit 7ca93af to fix build break. It can be enabled now as commit 65c9d04 adapted slp driver to the new interface of rndis. Change-Id: Id28413de771818cf1a358664d637aa989615fe26 Signed-off-by: Jacek Bukarewicz <j.bukarewicz@samsung.com>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/gadget/slp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/slp.c b/drivers/usb/gadget/slp.c
index 70b7d2fd033..bc9649204cf 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[] = {"sdb"};
+static const char *default_funcs[] = {"rndis", "sdb"};
static unsigned slp_multi_nluns;
static struct class *slp_multi_class;
static struct slp_multi_dev *_slp_multi_dev;