aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/LowLevel
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-04-20 11:21:36 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-04-20 11:21:36 +0000
commit37b2130fb2767a39f3d95414c6aca75a67c26298 (patch)
tree0288d41e710e3142696765cb76288357439c296b /LUFA/Drivers/USB/LowLevel
parent619b0b7b6b44e4422ea9aeb0cde41343bb5dda70 (diff)
downloadlufa-37b2130fb2767a39f3d95414c6aca75a67c26298.tar.gz
lufa-37b2130fb2767a39f3d95414c6aca75a67c26298.tar.bz2
lufa-37b2130fb2767a39f3d95414c6aca75a67c26298.zip
Changed over all deprecated GCC structure tag initializers to the standardized C99 format (thanks to Mike Alexander).
Diffstat (limited to 'LUFA/Drivers/USB/LowLevel')
-rw-r--r--LUFA/Drivers/USB/LowLevel/Pipe.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/LUFA/Drivers/USB/LowLevel/Pipe.h b/LUFA/Drivers/USB/LowLevel/Pipe.h
index 4e2ffec5a..c4a58b471 100644
--- a/LUFA/Drivers/USB/LowLevel/Pipe.h
+++ b/LUFA/Drivers/USB/LowLevel/Pipe.h
@@ -805,8 +805,8 @@
*
* \ingroup Group_PipeRW
*/
- static inline void Pipe_Ignore_DWord(void) ATTR_ALWAYS_INLINE;
- static inline void Pipe_Ignore_DWord(void)
+ static inline void Pipe_Discard_DWord(void) ATTR_ALWAYS_INLINE;
+ static inline void Pipe_Discard_DWord(void)
{
uint8_t Dummy;
@@ -854,8 +854,6 @@
/** Spinloops until the currently selected non-control pipe is ready for the next packed of data
* to be read or written to it.
*
- * \note This routine should not be called on CONTROL type pipes.
- *
* \ingroup Group_PipeRW
*
* \return A value from the Pipe_WaitUntilReady_ErrorCodes_t enum.