r8152: Add RTL8152_INACCESSIBLE to r8156b_wait_loading_flash()
[ Upstream commit 8a67b47fced9f6a84101eb9ec5ce4c7d64204bc7 ]
Delay loops in r8152 should break out if RTL8152_INACCESSIBLE is set
so that they don't delay too long if the device becomes
inaccessible. Add the break to the loop in
r8156b_wait_loading_flash().
Fixes: 195aae321c ("r8152: support new chips")
Reviewed-by: Grant Grundler <grundler@chromium.org>
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Acked-by: Hayes Wang <hayeswang@realtek.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
0823990da7
commit
284cd311bb
1 changed files with 2 additions and 0 deletions
|
|
@ -5403,6 +5403,8 @@ static void r8156b_wait_loading_flash(struct r8152 *tp)
|
|||
int i;
|
||||
|
||||
for (i = 0; i < 100; i++) {
|
||||
if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
|
||||
break;
|
||||
if (ocp_read_word(tp, MCU_TYPE_USB, USB_GPHY_CTRL) & GPHY_PATCH_DONE)
|
||||
break;
|
||||
usleep_range(1000, 2000);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue