aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms/AVR
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-04-23 17:20:08 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-04-23 17:20:08 +0000
commit9a29560d71bec3998ce2720f1966ba111f7af43c (patch)
treecec80250bb2be8c3a6f996a9c379a56043121c41 /os/hal/platforms/AVR
parentbdf2f3eff53f7e2c5117999f17ed16a3b826dcc7 (diff)
downloadChibiOS-9a29560d71bec3998ce2720f1966ba111f7af43c.tar.gz
ChibiOS-9a29560d71bec3998ce2720f1966ba111f7af43c.tar.bz2
ChibiOS-9a29560d71bec3998ce2720f1966ba111f7af43c.zip
Fixed bug 3292084.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2898 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/AVR')
-rw-r--r--os/hal/platforms/AVR/serial_lld.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/platforms/AVR/serial_lld.c b/os/hal/platforms/AVR/serial_lld.c
index bafca4537..a61d6b0c2 100644
--- a/os/hal/platforms/AVR/serial_lld.c
+++ b/os/hal/platforms/AVR/serial_lld.c
@@ -183,7 +183,7 @@ CH_IRQ_HANDLER(USART0_UDRE_vect) {
CH_IRQ_PROLOGUE();
chSysLockFromIsr();
- b = sdRequestDataI(&SER1);
+ b = sdRequestDataI(&SD1);
chSysUnlockFromIsr();
if (b < Q_OK)
UCSR0B &= ~(1 << UDRIE);