Re: [PATCH wpan v2] ieee802154: ca8210: fix pointer truncation in kfifo on 64-bit
From: Miquel Raynal
Date: Wed May 20 2026 - 04:20:02 EST
Hi,
> @@ -2540,8 +2540,10 @@ static ssize_t ca8210_test_int_user_read(
> !kfifo_is_empty(&priv->test.up_fifo)
> );
> }
> + unsigned int copied;
Why is this declaration in the middle of the code? It should be at the
top,no?
Thanks,
Miquèl