On Wed, Aug 28, 2024 at 5:23 AM Mark Cave-Ayland <mark.cave-ayl...@ilande.co.uk> wrote: > > This is to emphasise that the function returns a pointer to the internal FIFO > buffer. > > Signed-off-by: Mark Cave-Ayland <mark.cave-ayl...@ilande.co.uk>
Reviewed-by: Octavian Purdila <ta...@google.com> > --- > util/fifo8.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/util/fifo8.c b/util/fifo8.c > index 1ffa19d900..61bce9d9a0 100644 > --- a/util/fifo8.c > +++ b/util/fifo8.c > @@ -71,8 +71,8 @@ uint8_t fifo8_pop(Fifo8 *fifo) > return ret; > } > > -static const uint8_t *fifo8_peekpop_buf(Fifo8 *fifo, uint32_t max, > - uint32_t *numptr, bool do_pop) > +static const uint8_t *fifo8_peekpop_bufptr(Fifo8 *fifo, uint32_t max, > + uint32_t *numptr, bool do_pop) > { > uint8_t *ret; > uint32_t num; > @@ -94,12 +94,12 @@ static const uint8_t *fifo8_peekpop_buf(Fifo8 *fifo, > uint32_t max, > > const uint8_t *fifo8_peek_bufptr(Fifo8 *fifo, uint32_t max, uint32_t *numptr) > { > - return fifo8_peekpop_buf(fifo, max, numptr, false); > + return fifo8_peekpop_bufptr(fifo, max, numptr, false); > } > > const uint8_t *fifo8_pop_bufptr(Fifo8 *fifo, uint32_t max, uint32_t *numptr) > { > - return fifo8_peekpop_buf(fifo, max, numptr, true); > + return fifo8_peekpop_bufptr(fifo, max, numptr, true); > } > > uint32_t fifo8_pop_buf(Fifo8 *fifo, uint8_t *dest, uint32_t destlen) > -- > 2.39.2 >