Commit b0285278 authored by Federico Vaga's avatar Federico Vaga

sw:fw: make the timeout size explicit

Signed-off-by: Federico Vaga's avatarFederico Vaga <federico.vaga@cern.ch>
parent ef95d642
......@@ -556,7 +556,7 @@ static inline uint32_t mq_poll_out(enum trtl_mq_type type, uint32_t mask)
* @return message queues input status bitmask, 0 on timeout
*/
static inline uint32_t mq_poll_in_wait(enum trtl_mq_type type, uint32_t mask,
unsigned int us_timeout)
uint32_t us_timeout)
{
const struct trtl_config_rom *cfg = trtl_config_rom_get();
uint32_t p;
......@@ -580,7 +580,7 @@ static inline uint32_t mq_poll_in_wait(enum trtl_mq_type type, uint32_t mask,
* @return message queues input status bitmask, 0 on timeout
*/
static inline uint32_t mq_poll_out_wait(enum trtl_mq_type type, uint32_t mask,
unsigned int us_timeout)
uint32_t us_timeout)
{
const struct trtl_config_rom *cfg = trtl_config_rom_get();
uint32_t p;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment