On Wed, 10 Sep 2025 14:08:21 +0800 Yibo Dong wrote:
>       do {
>               err = mucse_mbx_get_info(hw);
>               if (err != -ETIMEDOUT)
>                       break;
>               /* only retry with ETIMEDOUT, others just return */
>       } while (try_cnt--);

        do {
                err = bla();
        } while (err == -ETIMEDOUT && try_cnt--);

Reply via email to