Merge "disp: msm: dp: avoid duplicate read of link status"
This commit is contained in:
committed by
Gerrit - the friendly Code Review server
commit
21ff035e90
@@ -1,6 +1,6 @@
|
||||
// SPDX-License-Identifier: GPL-2.0-only
|
||||
/*
|
||||
* Copyright (c) 2021, Qualcomm Innovation Center, Inc. All rights reserved.
|
||||
* Copyright (c) 2022, Qualcomm Innovation Center, Inc. All rights reserved.
|
||||
* Copyright (c) 2012-2021, The Linux Foundation. All rights reserved.
|
||||
*/
|
||||
|
||||
@@ -278,7 +278,7 @@ static int dp_ctrl_read_link_status(struct dp_ctrl_private *ctrl,
|
||||
break;
|
||||
}
|
||||
|
||||
if (!(link_status[offset] & DP_LINK_STATUS_UPDATED))
|
||||
if (link_status[offset] & DP_LINK_STATUS_UPDATED)
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user