Skip to content
Snippets Groups Projects
Commit 614cabb6 authored by Adam Wujek's avatar Adam Wujek
Browse files

[FEATURE: #284] userspace/tools: fix timesource label for values 0xF0-0xFE


Signed-off-by: default avatarAdam Wujek <dev_public@wujek.eu>
parent a998d378
Branches
Tags
No related merge requests found
......@@ -334,7 +334,7 @@ static char * getTimeSourceLabel(int ts)
if (ts == 0x60) return "(handSet)";
if (ts == 0x90) return "(other)";
if (ts == 0xA0) return "(intOscillator)";
if (ts >= 0xF0 && ts <= 0xFE) return "(intOscillator)";
if (ts >= 0xF0 && ts <= 0xFE) return "(altPTPprofile)";
if (ts == 0xFF) return "(reserved)";
return "";
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment