diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-01-02 14:58:51 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-01-02 14:58:51 +0000 |
commit | 31881e1dd3bee0ff04f3a46742d8f260210f8c29 (patch) | |
tree | de7b0c27adcdb5755702f63bc39d36264916cfff /os/hal/platforms/LPC13xx/serial_lld.c | |
parent | 90b70c4d4618296d0aed5d75e9170b6865192db0 (diff) | |
download | ChibiOS-31881e1dd3bee0ff04f3a46742d8f260210f8c29.tar.gz ChibiOS-31881e1dd3bee0ff04f3a46742d8f260210f8c29.tar.bz2 ChibiOS-31881e1dd3bee0ff04f3a46742d8f260210f8c29.zip |
Updated the various serial drivers with the new queue callbacks.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2573 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/LPC13xx/serial_lld.c')
-rw-r--r-- | os/hal/platforms/LPC13xx/serial_lld.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/os/hal/platforms/LPC13xx/serial_lld.c b/os/hal/platforms/LPC13xx/serial_lld.c index ab62d746b..5dc014d5c 100644 --- a/os/hal/platforms/LPC13xx/serial_lld.c +++ b/os/hal/platforms/LPC13xx/serial_lld.c @@ -198,8 +198,9 @@ static void preload(SerialDriver *sdp) { * @brief Driver SD1 output notification.
*/
#if LPC13xx_SERIAL_USE_UART0 || defined(__DOXYGEN__)
-static void notify1(void) {
+static void notify1(GenericQueue *qp) {
+ (void)qp;
preload(&SD1);
}
#endif
|