Skip to content
Snippets Groups Projects
Commit 25d1936a authored by Jeroen Hofstee's avatar Jeroen Hofstee Committed by Marek Vasut
Browse files

usb: xhci: (likely) fix bracket in if condition


Because of the brackets the & and && is evaluated before
the comparison. This is likely not the intention. Change
it to test the first and second condition to both be true.

cc: Marek Vasut <marex@denx.de>
Signed-off-by: default avatarJeroen Hofstee <jeroen@myspectrum.nl>
parent 19a2a67f
No related branches found
No related tags found
No related merge requests found
......@@ -643,8 +643,8 @@ static int xhci_submit_root(struct usb_device *udev, unsigned long pipe,
struct xhci_ctrl *ctrl = udev->controller;
struct xhci_hcor *hcor = ctrl->hcor;
if (((req->requesttype & USB_RT_PORT) &&
le16_to_cpu(req->index)) > CONFIG_SYS_USB_XHCI_MAX_ROOT_PORTS) {
if ((req->requesttype & USB_RT_PORT) &&
le16_to_cpu(req->index) > CONFIG_SYS_USB_XHCI_MAX_ROOT_PORTS) {
printf("The request port(%d) is not configured\n",
le16_to_cpu(req->index) - 1);
return -EINVAL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment