From e655ac4cd898070ecec44503fc0c77203a562c90 Mon Sep 17 00:00:00 2001 From: utzig Date: Tue, 8 Jul 2014 18:58:51 +0000 Subject: Fixed to osal type names git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7016 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/ports/AVR/serial_lld.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/os/hal/ports/AVR/serial_lld.c b/os/hal/ports/AVR/serial_lld.c index 688e132c1..953870952 100644 --- a/os/hal/ports/AVR/serial_lld.c +++ b/os/hal/ports/AVR/serial_lld.c @@ -117,7 +117,7 @@ static void set_error(uint8_t sra, SerialDriver *sdp) { } #if AVR_SERIAL_USE_USART0 || defined(__DOXYGEN__) -static void notify1(GenericQueue *qp) { +static void notify1(io_queue_t *qp) { (void)qp; UCSR0B |= (1 << UDRIE0); @@ -166,7 +166,7 @@ static void usart0_deinit(void) { #endif #if AVR_SERIAL_USE_USART1 || defined(__DOXYGEN__) -static void notify2(GenericQueue *qp) { +static void notify2(io_queue_t *qp) { (void)qp; UCSR1B |= (1 << UDRIE1); -- cgit v1.2.3