Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

auxdisplay: charlcd: move charlcd.h to drivers/auxdisplay

This header is included in drivers/auxdisplay/. Make it a local header.

Reviewed-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Miguel Ojeda <miguel.ojeda.sandonis@gmail.com>

authored by

Masahiro Yamada and committed by
Miguel Ojeda
75354284 ba2c1340

+3 -4
+1 -1
drivers/auxdisplay/charlcd.c
··· 20 20 21 21 #include <generated/utsrelease.h> 22 22 23 - #include <misc/charlcd.h> 23 + #include "charlcd.h" 24 24 25 25 #define LCD_MINOR 156 26 26
+1 -2
drivers/auxdisplay/hd44780.c
··· 14 14 #include <linux/property.h> 15 15 #include <linux/slab.h> 16 16 17 - #include <misc/charlcd.h> 18 - 17 + #include "charlcd.h" 19 18 20 19 enum hd44780_pin { 21 20 /* Order does matter due to writing to GPIO array subsets! */
+1 -1
drivers/auxdisplay/panel.c
··· 55 55 #include <linux/io.h> 56 56 #include <linux/uaccess.h> 57 57 58 - #include <misc/charlcd.h> 58 + #include "charlcd.h" 59 59 60 60 #define KEYPAD_MINOR 185 61 61
include/misc/charlcd.h drivers/auxdisplay/charlcd.h