Re: [PATCH 3/9] fifo8: add skip parameter to fifo8_peekpop_bufptr()

2024-08-30 Thread Octavian Purdila
On Wed, Aug 28, 2024 at 5:23 AM Mark Cave-Ayland wrote: > > The skip parameter specifies the number of bytes to be skipped from the > current > FIFO head before the peek or pop operation. > > Signed-off-by: Mark Cave-Ayland Reviewed-by: Octavian Purdila > --- > util/fifo8.c | 12 +++-

Re: [PATCH 3/9] fifo8: add skip parameter to fifo8_peekpop_bufptr()

2024-08-29 Thread Alistair Francis
On Wed, Aug 28, 2024 at 10:24 PM Mark Cave-Ayland wrote: > > The skip parameter specifies the number of bytes to be skipped from the > current > FIFO head before the peek or pop operation. > > Signed-off-by: Mark Cave-Ayland Reviewed-by: Alistair Francis Alistair > --- > util/fifo8.c | 12 +

[PATCH 3/9] fifo8: add skip parameter to fifo8_peekpop_bufptr()

2024-08-28 Thread Mark Cave-Ayland
The skip parameter specifies the number of bytes to be skipped from the current FIFO head before the peek or pop operation. Signed-off-by: Mark Cave-Ayland --- util/fifo8.c | 12 +++- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/util/fifo8.c b/util/fifo8.c index 5faa814a