Commit 6b2e30c0 authored by Dan Carpenter's avatar Dan Carpenter Committed by Greg Kroah-Hartman

usb: fusb300_udc: add more "ep%d" names

We need FUSB300_MAX_NUM_EP (16) names otherwise the last 8 names get
initialized to garbage values in fusb300_probe().
Signed-off-by: default avatarDan Carpenter <error27@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 16f08a08
...@@ -38,7 +38,8 @@ MODULE_ALIAS("platform:fusb300_udc"); ...@@ -38,7 +38,8 @@ MODULE_ALIAS("platform:fusb300_udc");
static const char udc_name[] = "fusb300_udc"; static const char udc_name[] = "fusb300_udc";
static const char * const fusb300_ep_name[] = { static const char * const fusb300_ep_name[] = {
"ep0", "ep1", "ep2", "ep3", "ep4", "ep5", "ep6", "ep7" "ep0", "ep1", "ep2", "ep3", "ep4", "ep5", "ep6", "ep7", "ep8", "ep9",
"ep10", "ep11", "ep12", "ep13", "ep14", "ep15"
}; };
static void done(struct fusb300_ep *ep, struct fusb300_request *req, static void done(struct fusb300_ep *ep, struct fusb300_request *req,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment