hd44780_common.h (718e05ed92ecac0d9d3954bcc8064527c3ce7565) hd44780_common.h (2545c1c948a6a765f1a0e820c7598138b36f67ef)
1/* SPDX-License-Identifier: GPL-2.0-or-later */
2
1/* SPDX-License-Identifier: GPL-2.0-or-later */
2
3#define DEFAULT_LCD_BWIDTH 40
4#define DEFAULT_LCD_HWIDTH 64
5
3struct hd44780_common {
6struct hd44780_common {
7 int bwidth; /* Default set by hd44780_alloc() */
8 int hwidth; /* Default set by hd44780_alloc() */
4 void *hd44780;
5};
6
7struct hd44780_common *hd44780_common_alloc(void);
9 void *hd44780;
10};
11
12struct hd44780_common *hd44780_common_alloc(void);