From 11be2035dd911c5920bb052491602644b2780484 Mon Sep 17 00:00:00 2001 From: Gunar Schorcht Date: Thu, 11 Oct 2018 08:21:28 +0200 Subject: [PATCH] drivers/hd44780: fix compilation errors --- drivers/hd44780/hd44780.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/hd44780/hd44780.c b/drivers/hd44780/hd44780.c index ffe58ad52c..0cf3c16764 100644 --- a/drivers/hd44780/hd44780.c +++ b/drivers/hd44780/hd44780.c @@ -32,7 +32,7 @@ static inline void _command(const hd44780_t *dev, uint8_t value); static void _pulse(const hd44780_t *dev); -static void _send(const hd44780_t *dev, uint8_t value, uint8_t mode); +static void _send(const hd44780_t *dev, uint8_t value, hd44780_state_t state); static void _write_bits(const hd44780_t *dev, uint8_t bits, uint8_t value); /**