Merge tag 'seccomp-v5.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/kees...
[linux-2.6-microblaze.git] / drivers / auxdisplay / hd44780.c
index b0893ea..2e5e7c9 100644 (file)
@@ -129,6 +129,16 @@ static const struct charlcd_ops hd44780_ops_gpio8 = {
        .print          = hd44780_common_print,
        .gotoxy         = hd44780_common_gotoxy,
        .home           = hd44780_common_home,
+       .clear_display  = hd44780_common_clear_display,
+       .init_display   = hd44780_common_init_display,
+       .shift_cursor   = hd44780_common_shift_cursor,
+       .shift_display  = hd44780_common_shift_display,
+       .display        = hd44780_common_display,
+       .cursor         = hd44780_common_cursor,
+       .blink          = hd44780_common_blink,
+       .fontsize       = hd44780_common_fontsize,
+       .lines          = hd44780_common_lines,
+       .redefine_char  = hd44780_common_redefine_char,
 };
 
 /* Send a command to the LCD panel in 4 bit GPIO mode */
@@ -175,6 +185,16 @@ static const struct charlcd_ops hd44780_ops_gpio4 = {
        .print          = hd44780_common_print,
        .gotoxy         = hd44780_common_gotoxy,
        .home           = hd44780_common_home,
+       .clear_display  = hd44780_common_clear_display,
+       .init_display   = hd44780_common_init_display,
+       .shift_cursor   = hd44780_common_shift_cursor,
+       .shift_display  = hd44780_common_shift_display,
+       .display        = hd44780_common_display,
+       .cursor         = hd44780_common_cursor,
+       .blink          = hd44780_common_blink,
+       .fontsize       = hd44780_common_fontsize,
+       .lines          = hd44780_common_lines,
+       .redefine_char  = hd44780_common_redefine_char,
 };
 
 static int hd44780_probe(struct platform_device *pdev)