libpayload: Fix random warnings
dump_td() is orphaned but looks useful => commented out. The delay identifier shadowed the global one => renamed to total_delay. Change-Id: I4f3766a07db9194b2552ebf9302bd7ef8a66371f Signed-off-by: Nico Huber <nico.huber@secunet.com> Reviewed-on: http://review.coreboot.org/1895 Reviewed-by: Patrick Georgi <patrick@georgi-clan.de> Tested-by: build bot (Jenkins)
This commit is contained in:
committed by
Patrick Georgi
parent
4f83d1b0c6
commit
e8a71d34cd
@@ -48,8 +48,8 @@ ohci_rh_enable_port (usbdev_t *dev, int port)
|
||||
* After reset, the port will be enabled automatically (ohci spec
|
||||
* 7.4.4).
|
||||
*/
|
||||
int delay = 100; /* 100 * 500us == 50ms */
|
||||
while (delay > 0) {
|
||||
int total_delay = 100; /* 100 * 500us == 50ms */
|
||||
while (total_delay > 0) {
|
||||
if (!(OHCI_INST(dev->controller)->opreg->HcRhPortStatus[port]
|
||||
& CurrentConnectStatus))
|
||||
return;
|
||||
@@ -61,7 +61,7 @@ ohci_rh_enable_port (usbdev_t *dev, int port)
|
||||
while ((OHCI_INST (dev->controller)->opreg->HcRhPortStatus[port]
|
||||
& PortResetStatus)
|
||||
&& timeout--) {
|
||||
udelay(500); delay--;
|
||||
udelay(500); total_delay--;
|
||||
}
|
||||
if (OHCI_INST (dev->controller)->opreg->HcRhPortStatus[port]
|
||||
& PortResetStatus) {
|
||||
|
Reference in New Issue
Block a user