Simplify AVR32 UC3B software FIFO, as it will only ever be accessed a byte at a time...
[pub/lufa.git] / LUFA / Drivers / USB / Core / UC3B / Pipe_UC3B.c
index d20926a..870828e 100644 (file)
@@ -37,8 +37,8 @@
 \r
 uint8_t USB_ControlPipeSize = PIPE_CONTROLPIPE_DEFAULT_SIZE;\r
 \r
-volatile uint8_t USB_SelectedPipe = PIPE_CONTROLPIPE;\r
-volatile void*   USB_PipeFIFOPos[PIPE_TOTAL_PIPES];\r
+volatile uint8_t  USB_SelectedPipe = PIPE_CONTROLPIPE;\r
+volatile uint8_t* USB_PipeFIFOPos[PIPE_TOTAL_PIPES];\r
 \r
 bool Pipe_ConfigurePipe(const uint8_t Number,\r
                         const uint8_t Type,\r