You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (actualOwner==expectedOwner&&actualIndex==RESOURCE_INDEX(index)) {
4068
+
return;
4069
+
}
4070
+
// OWNER_FREE is indistinguishable from "this UART not opened this boot" (unassigned serial function) -- skip to avoid false positives on every unused UART slot.
4071
+
if (actualOwner==OWNER_FREE) {
4072
+
return;
4073
+
}
4074
+
charidxSuffix[DMA_OPT_STRING_BUFSIZE] ="";
4075
+
if (actualIndex>0) {
4076
+
tfp_sprintf(idxSuffix, " %d", actualIndex);
4077
+
}
4078
+
cliPrintLinef("# %s %d: CLAIMED BY %s%s", entry->device, index+1, ownerNames[actualOwner], idxSuffix);
0 commit comments