Fix Serial peripheral driver compile error for XMEGA devices.
[pub/USBasp.git] / LUFA / Drivers / Peripheral / XMEGA / Serial_XMEGA.c
index 3d61952..c7dcd61 100644 (file)
@@ -95,7 +95,7 @@ void Serial_SendData(USART_t* const USART,
          Serial_SendByte(USART, *((uint8_t*)Buffer++));
 }
 
-void Serial_CreateStream(FILE* const Stream)
+void Serial_CreateStream(FILE* Stream)
 {
        if (!(Stream))
        {
@@ -107,7 +107,7 @@ void Serial_CreateStream(FILE* const Stream)
        *Stream = (FILE)FDEV_SETUP_STREAM(Serial_putchar, Serial_getchar, _FDEV_SETUP_RW);
 }
 
-void Serial_CreateBlockingStream(FILE* const Stream)
+void Serial_CreateBlockingStream(FILE* Stream)
 {
        if (!(Stream))
        {