Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions rpc/srv/dsVideoPort.c
Original file line number Diff line number Diff line change
Expand Up @@ -2329,6 +2329,7 @@ bool isComponentPortPresent()
IARM_Result_t _dsGetIgnoreEDIDStatus(void* arg)
{
dsEdidIgnoreParam_t *param = (dsEdidIgnoreParam_t*) arg;
dsError_t ret = dsERR_GENERAL;
_DEBUG_ENTER();
IARM_BUS_Lock(lock);
//Default status is false
Expand All @@ -2351,8 +2352,12 @@ IARM_Result_t _dsGetIgnoreEDIDStatus(void* arg)
}
}

if (func != NULL) {
func(param->handle, &param->ignoreEDID);
if (func != NULL) {
ret = func(param->handle, &param->ignoreEDID);
if (ret != dsERR_NONE) {
INT_INFO("dsSRV: dsGetIgnoreEDIDStatus failed with err:%d, falling back ignoreEDID to true\r\n", ret);
param->ignoreEDID = true;
}
Comment on lines +2355 to +2360
}
INT_INFO("dsSRV: _dsGetIgnoreEDIDStatus status: %d\r\n", param->ignoreEDID);

Expand Down
Loading