Lines Matching +full:display +full:- +full:rows
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
5 * Copyright (C) 2000-2008, Willy Tarreau <w@1wt.eu>
6 * Copyright (C) 2016-2017 Glider bvba
14 #define LCD_FLAG_D 0x0010 /* Display on */
16 #define LCD_FLAG_N 0x0040 /* 2-rows mode */
58 * struct charlcd_ops - Functions used by charlcd. Drivers have to implement
61 * @print: Print one character to the display at current cursor position.
68 * @clear_display: Clear the whole display and set the cursor to 0, 0. The
71 * @init_display: Initialize the display.
73 * @shift_display: Shift whole display content left or right.
74 * @display: Turn display on or off.
89 int (*display)(struct charlcd *lcd, enum charlcd_onoff on); member