Re: [PATCH net-next 4/6] net: ipa: support retries on generic GSI commands

From: Jakub Kicinski
Date: Fri Nov 20 2020 - 21:49:46 EST


On Thu, 19 Nov 2020 16:49:27 -0600 Alex Elder wrote:
> + do
> + ret = gsi_generic_command(gsi, channel_id,
> + GSI_GENERIC_HALT_CHANNEL);
> + while (ret == -EAGAIN && retries--);

This may well be the first time I've seen someone write a do while loop
without the curly brackets!