summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Simek <[email protected]>2026-07-29 14:02:47 +0200
committerPeng Fan <[email protected]>2026-08-11 15:44:32 +0800
commitce220f7f6407c3c6e3cae469cf7d80ad3cba20d9 (patch)
tree2df60ae3cf6d03be4a204c95e011b178dce20a34
parent36c377b9859ffb53eb1e39ea31e8d96d1e0fe1e5 (diff)
cmd: scmi: Show names for vendor protocols 0x80 and 0x82
The generic SCMI vendor protocol IDs (0x80, 0x82) were listed by "scmi info" as <NULL>. Add human readable names so the vendor protocols are easier to identify. Signed-off-by: Michal Simek <[email protected]> Signed-off-by: Peng Fan <[email protected]>
-rw-r--r--cmd/scmi.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/scmi.c b/cmd/scmi.c
index d0498b816aa..af974314583 100644
--- a/cmd/scmi.c
+++ b/cmd/scmi.c
@@ -30,6 +30,8 @@ struct {
{SCMI_PROTOCOL_ID_RESET_DOMAIN, "Reset domain management"},
{SCMI_PROTOCOL_ID_VOLTAGE_DOMAIN, "Voltage domain management"},
{SCMI_PROTOCOL_ID_PINCTRL, "Pin control management"},
+ {SCMI_PROTOCOL_ID_VENDOR_80, "Vendor specific (0x80)"},
+ {SCMI_PROTOCOL_ID_VENDOR_82, "Vendor specific (0x82)"},
};
/**