aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms/LPC13xx/serial_lld.c
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/platforms/LPC13xx/serial_lld.c')
-rw-r--r--os/hal/platforms/LPC13xx/serial_lld.c3
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