aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Core
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-04-04 15:25:30 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-04-04 15:25:30 +0000
commit96a2da1813ac4a0bdd1b0641c67e5af2dd792e73 (patch)
treef51907ed9bbddf19e9d8e21200433df777d83469 /LUFA/Drivers/USB/Core
parent899df7d3318e478859d940ec8debe679888476a5 (diff)
downloadlufa-96a2da1813ac4a0bdd1b0641c67e5af2dd792e73.tar.gz
lufa-96a2da1813ac4a0bdd1b0641c67e5af2dd792e73.tar.bz2
lufa-96a2da1813ac4a0bdd1b0641c67e5af2dd792e73.zip
Oops - fix incorrect variable name in the updated Pipe_Write_8() function.
Diffstat (limited to 'LUFA/Drivers/USB/Core')
-rw-r--r--LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h b/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h
index 74716a013..2e89f6de4 100644
--- a/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h
+++ b/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h
@@ -598,7 +598,7 @@
static inline void Pipe_Write_8(const uint8_t Data) ATTR_ALWAYS_INLINE;
static inline void Pipe_Write_8(const uint8_t Data)
{
- UPDATX = Byte;
+ UPDATX = Data;
}
/** Discards one byte from the currently selected pipe's bank, for OUT direction pipes.