diff options
| author | Michal Simek <[email protected]> | 2026-07-29 14:02:47 +0200 |
|---|---|---|
| committer | Peng Fan <[email protected]> | 2026-08-11 15:44:32 +0800 |
| commit | ce220f7f6407c3c6e3cae469cf7d80ad3cba20d9 (patch) | |
| tree | 2df60ae3cf6d03be4a204c95e011b178dce20a34 | |
| parent | 36c377b9859ffb53eb1e39ea31e8d96d1e0fe1e5 (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.c | 2 |
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)"}, }; /** |
