diff options
Diffstat (limited to 'drivers/auxdisplay/panel.c')
-rw-r--r-- | drivers/auxdisplay/panel.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/auxdisplay/panel.c b/drivers/auxdisplay/panel.c index e07fadac281d..36848e464d1f 100644 --- a/drivers/auxdisplay/panel.c +++ b/drivers/auxdisplay/panel.c @@ -810,6 +810,7 @@ static void lcd_write_data_tilcd(struct hd44780_common *hdc, int data) static const struct charlcd_ops charlcd_serial_ops = { .backlight = lcd_backlight, + .print = hd44780_common_print, .gotoxy = hd44780_common_gotoxy, .home = hd44780_common_home, .clear_display = hd44780_common_clear_display, @@ -826,6 +827,7 @@ static const struct charlcd_ops charlcd_serial_ops = { static const struct charlcd_ops charlcd_parallel_ops = { .backlight = lcd_backlight, + .print = hd44780_common_print, .gotoxy = hd44780_common_gotoxy, .home = hd44780_common_home, .clear_display = hd44780_common_clear_display, @@ -842,6 +844,7 @@ static const struct charlcd_ops charlcd_parallel_ops = { static const struct charlcd_ops charlcd_tilcd_ops = { .backlight = lcd_backlight, + .print = hd44780_common_print, .gotoxy = hd44780_common_gotoxy, .home = hd44780_common_home, .clear_display = hd44780_common_clear_display, |