Re: [Qemu-devel] [PATCH v4 1/4] util/fifo: Generalise naming scheme

2014-04-15 Thread Beniamino Galvani
On Mon, Apr 14, 2014 at 08:18:20PM -0700, Peter Crosthwaite wrote: > Generalise the names of the FIFO API to not include the "8". > > The exception is the push/pop functions for which we: > > s/fifo8_pop/fifo_pop8 > s/fifo8_push/fifo_push8 > > This prepares support for generalising FIFO support

[Qemu-devel] [PATCH v4 1/4] util/fifo: Generalise naming scheme

2014-04-14 Thread Peter Crosthwaite
Generalise the names of the FIFO API to not include the "8". The exception is the push/pop functions for which we: s/fifo8_pop/fifo_pop8 s/fifo8_push/fifo_push8 This prepares support for generalising FIFO support to more integer widths. Most APIs will just share name and implementation. The push