diff options
| author | Anup Patel <[email protected]> | 2025-01-12 10:22:40 +0530 |
|---|---|---|
| committer | Anup Patel <[email protected]> | 2025-02-13 11:10:03 +0530 |
| commit | 30437eb2042c163bd1dc2870ba239514230b7233 (patch) | |
| tree | 4e9620995eba862875588de202fa5fb763b36d84 | |
| parent | 75c2057a6f95520fd9d2b07299d1dbb5de9113d1 (diff) | |
lib: sbi: Fix capability bit assignment in MPXY framework
The capability bit assignment in MPXY framework does not match the
SBI MPXY extension in latest SBI specification so update it.
Fixes: 7939bf1329eb ("lib: sbi: Add SBI Message Proxy (MPXY) framework")
Signed-off-by: Anup patel <[email protected]>
Reviewed-by: Samuel Holland <[email protected]>
| -rw-r--r-- | lib/sbi/sbi_mpxy.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/sbi/sbi_mpxy.c b/lib/sbi/sbi_mpxy.c index 639478bf..91b212a6 100644 --- a/lib/sbi/sbi_mpxy.c +++ b/lib/sbi/sbi_mpxy.c @@ -43,17 +43,17 @@ static SBI_LIST_HEAD(mpxy_channel_list); #define CAP_EVENTSSTATE_POS 2 #define CAP_EVENTSSTATE_MASK (1U << CAP_EVENTSSTATE_POS) -/** Channel Capability - Get Notification function support */ -#define CAP_GET_NOTIFICATIONS_POS 3 -#define CAP_GET_NOTIFICATIONS_MASK (1U << CAP_GET_NOTIFICATIONS_POS) +/** Channel Capability - Send Message With Response function support */ +#define CAP_SEND_MSG_WITH_RESP_POS 3 +#define CAP_SEND_MSG_WITH_RESP_MASK (1U << CAP_SEND_MSG_WITH_RESP_POS) /** Channel Capability - Send Message Without Response function support */ #define CAP_SEND_MSG_WITHOUT_RESP_POS 4 #define CAP_SEND_MSG_WITHOUT_RESP_MASK (1U << CAP_SEND_MSG_WITHOUT_RESP_POS) -/** Channel Capability - Send Message With Response function support */ -#define CAP_SEND_MSG_WITH_RESP_POS 5 -#define CAP_SEND_MSG_WITH_RESP_MASK (1U << CAP_SEND_MSG_WITH_RESP_POS) +/** Channel Capability - Get Notification function support */ +#define CAP_GET_NOTIFICATIONS_POS 5 +#define CAP_GET_NOTIFICATIONS_MASK (1U << CAP_GET_NOTIFICATIONS_POS) /** Helpers to enable/disable channel capability bits * _c: capability variable |
