diff options
author | utzig <utzig@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-07-08 18:58:51 +0000 |
---|---|---|
committer | utzig <utzig@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-07-08 18:58:51 +0000 |
commit | e655ac4cd898070ecec44503fc0c77203a562c90 (patch) | |
tree | 81ace2cabe8eb514920bd153f86f4008ac4d77ff | |
parent | 7534f806fa2a50fc9ad43cf383ba9df25913a901 (diff) | |
download | ChibiOS-e655ac4cd898070ecec44503fc0c77203a562c90.tar.gz ChibiOS-e655ac4cd898070ecec44503fc0c77203a562c90.tar.bz2 ChibiOS-e655ac4cd898070ecec44503fc0c77203a562c90.zip |
Fixed to osal type names
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7016 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/hal/ports/AVR/serial_lld.c | 4 |
1 files 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);
|