diff options
author | Peng Fan <peng.fan@nxp.com> | 2025-09-27 00:06:19 +0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-10-09 14:16:11 -0600 |
commit | f116ec5b9105ffa4792bfced12aab822e492ff5f (patch) | |
tree | 3b0289a42fff7783a7b65f1dabc5dc3813ac5379 /drivers/firmware/scmi/mailbox_agent.c | |
parent | b2ae10970d40a26e955d6f763cda77948d8b4f7e (diff) |
firmware: scmi: mailbox: Update timeout to 30ms
Following Linux Kernel drivers/firmware/arm_scmi/transports/mailbox.c to
set the default timeout to 30ms.
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'drivers/firmware/scmi/mailbox_agent.c')
-rw-r--r-- | drivers/firmware/scmi/mailbox_agent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/firmware/scmi/mailbox_agent.c b/drivers/firmware/scmi/mailbox_agent.c index 6d4497f4b92..32b0fd9f589 100644 --- a/drivers/firmware/scmi/mailbox_agent.c +++ b/drivers/firmware/scmi/mailbox_agent.c @@ -16,7 +16,7 @@ #include "smt.h" -#define TIMEOUT_US_10MS 10000 +#define TIMEOUT_US_30MS 30000 /** * struct scmi_mbox_channel - Description of an SCMI mailbox transport @@ -87,7 +87,7 @@ static int setup_channel(struct udevice *dev, struct scmi_mbox_channel *chan) return ret; } - chan->timeout_us = TIMEOUT_US_10MS; + chan->timeout_us = TIMEOUT_US_30MS; return 0; } |