Rename PDIProtocol.c/.h to XPROGProtocol.c/.h as it will now handle both TPI and...
[pub/USBasp.git] / LUFA / Drivers / Peripheral / SerialStream.c
index f8839c9..0e7b24c 100644 (file)
@@ -35,12 +35,15 @@ FILE USARTStream = FDEV_SETUP_STREAM(SerialStream_TxByte, SerialStream_RxByte, _
 \r
 static int SerialStream_TxByte(char DataByte, FILE *Stream)\r
 {\r
+       (void)Stream;\r
+       \r
        Serial_TxByte(DataByte);\r
-\r
        return 0;\r
 }\r
 \r
 static int SerialStream_RxByte(FILE *Stream)\r
 {\r
+       (void)Stream;\r
+\r
        return Serial_RxByte();\r
 }\r