Commit e4ee5c3c authored by Christophe JAILLET's avatar Christophe JAILLET Committed by Andy Shevchenko
Browse files

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
7e76aece ("auxdisplay: Extract character line display core support")

Signed-off-by: default avatarChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
parent fac04efc
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -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;
};

/*