Macro to define and initialize a fifo
DEFINE_KFIFO(fifo, type, size);
fifo
name of the declared fifo datatype
type
type of the fifo elements
size
the number of elements in the fifo, this must be a power of 2
the macro can be used for global and local fifo data type variables.