Merge "disp: msm: dp: avoid duplicate read of link status"

This commit is contained in:
qctecmdr
2022-01-20 15:35:22 -08:00
committed by Gerrit - the friendly Code Review server

View File

@@ -1,5 +1,6 @@
// SPDX-License-Identifier: GPL-2.0-only // SPDX-License-Identifier: GPL-2.0-only
/* /*
* Copyright (c) 2022, Qualcomm Innovation Center, Inc. All rights reserved.
* Copyright (c) 2012-2021, The Linux Foundation. All rights reserved. * Copyright (c) 2012-2021, The Linux Foundation. All rights reserved.
*/ */
@@ -278,7 +279,7 @@ static int dp_ctrl_read_link_status(struct dp_ctrl_private *ctrl,
break; break;
} }
if (!(link_status[offset] & DP_LINK_STATUS_UPDATED)) if (link_status[offset] & DP_LINK_STATUS_UPDATED)
break; break;
} }