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]> --- cmd/scmi.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/scmi.c b/cmd/scmi.c index d0498b816aaa..af9743145835 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)"}, }; /** --- base-commit: 264994658ecab72cc292f8ce433469b01f170e5c branch: debian-sent3 -- 2.43.0
