commit | d6cc1d13d987825ee18922ab329a9bc89eb34b7f | [log] [tgz] |
---|---|---|
author | Hans de Goede <hdegoede@redhat.com> | Sun May 10 14:10:24 2015 +0200 |
committer | Simon Glass <sjg@chromium.org> | Thu May 14 18:49:32 2015 -0600 |
tree | bfdd4ef175686bc4b11df7d2c792d9aed8a30131 | |
parent | f9d72a66b66285ab2e768cb5e5129b4c075ee0f5 [diff] |
usb: ohci: Skip unnecessary mdelay(1) calls in various places For some reason the ohci code is full with: #ifdef DEBUG pkt_print(...) #else mdelay(1); #endif AFAICT there is no reason for the mdelay(1) calls. This commit disables them when building the ohci code for new driver-model using boards. It leaves the mdelay(1) calls in place when building for older boards, so as to avoid causing any regressions there. Signed-off-by: Hans de Goede <hdegoede@redhat.com>