diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2024-12-06 23:25:41 +0100 |
---|---|---|
committer | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2024-12-10 22:26:33 +0200 |
commit | e4ee5c3c43ea25e9dae0ca548eeedcd178ff04e6 (patch) | |
tree | d2b512f217168cefdf51f34d438bc2293aa92f1d | |
parent | fac04efc5c793dccbd07e2d59af9f90b7fc0dca4 (diff) |
auxdisplay: img-ascii-lcd: Remove an unused field in struct img_ascii_lcd_ctx
Remove 'cfg' from struct img_ascii_lcd_ctx. It is unused since commit
7e76aece6f03 ("auxdisplay: Extract character line display core support")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
-rw-r--r-- | drivers/auxdisplay/img-ascii-lcd.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/auxdisplay/img-ascii-lcd.c b/drivers/auxdisplay/img-ascii-lcd.c index a802678a6f74..693339ba89d0 100644 --- a/drivers/auxdisplay/img-ascii-lcd.c +++ b/drivers/auxdisplay/img-ascii-lcd.c @@ -36,7 +36,6 @@ struct img_ascii_lcd_config { * @base: the base address of the LCD registers * @regmap: the regmap through which LCD registers are accessed * @offset: the offset within regmap to the start of the LCD registers - * @cfg: pointer to the LCD model configuration */ struct img_ascii_lcd_ctx { struct linedisp linedisp; @@ -45,7 +44,6 @@ struct img_ascii_lcd_ctx { struct regmap *regmap; }; u32 offset; - const struct img_ascii_lcd_config *cfg; }; /* |