mirror of https://gitee.com/openkylin/linux.git
usb: chipidea: add ci->is_otg condition for otg judgement
Since some chipidea based controller is not otg capable, add ci->is_otg condition when setting is_otg flag for gadget. Signed-off-by: Li Jun <jun.li@freescale.com> Reviewed-by: Roger Quadros <rogerq@ti.com> Acked-by: Peter Chen <peter.chen@freescale.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
This commit is contained in:
parent
a24b071bb4
commit
3f217e9e96
|
@ -1838,8 +1838,8 @@ static int udc_start(struct ci_hdrc *ci)
|
|||
ci->gadget.name = ci->platdata->name;
|
||||
ci->gadget.otg_caps = otg_caps;
|
||||
|
||||
if (otg_caps->hnp_support || otg_caps->srp_support ||
|
||||
otg_caps->adp_support)
|
||||
if (ci->is_otg && (otg_caps->hnp_support || otg_caps->srp_support ||
|
||||
otg_caps->adp_support))
|
||||
ci->gadget.is_otg = 1;
|
||||
|
||||
INIT_LIST_HEAD(&ci->gadget.ep_list);
|
||||
|
|
Loading…
Reference in New Issue