]> git.sur5r.net Git - u-boot/commit
common: usb: fix checking condition
authorPeng Fan <peng.fan@nxp.com>
Tue, 12 Jan 2016 07:57:01 +0000 (15:57 +0800)
committerMarek Vasut <marex@denx.de>
Sat, 16 Jan 2016 06:06:55 +0000 (07:06 +0100)
commit447b9cdf2c4d8d7c6cb1ff64426c1dfaf7396f93
treeebd5fba4a4c40637f72a18cfab100a1d259566b3
parent08c11cb5df8c75c79b165e19531040cc36036252
common: usb: fix checking condition

We support max USB_MAXENDPOINTS, so need to use
"epno >= USB_MAXENDPOINTS", but not "epno > USB_MAXENDPOINTS".
If use ">", we may exceeds the array of if_desc->ep_desc.

Signed-off-by: Peng Fan <peng.fan@nxp.com>
Cc: Simon Glass <sjg@chromium.org>
Cc: Hans de Goede <hdegoede@redhat.com>
Cc: Marek Vasut <marex@denx.de>
Cc: Paul Kocialkowski <contact@paulk.fr>
Cc: "Stefan BrĂ¼ns" <stefan.bruens@rwth-aachen.de>
Cc: Vincent Palatin <vpalatin@chromium.org>
common/usb.c