From 0445c7e7d50802ba2f15a28b4f9415db25004f13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Cab=C3=A9?= Date: Thu, 8 Jun 2023 20:12:27 +0200 Subject: [PATCH] drivers: auxdisplay: Set background to white MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed inconsistency between code & comments and actually set background to black Signed-off-by: Benjamin Cabé --- drivers/auxdisplay/auxdisplay_jhd1313.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/auxdisplay/auxdisplay_jhd1313.c b/drivers/auxdisplay/auxdisplay_jhd1313.c index 59b378e6e4e..10277a2bd45 100644 --- a/drivers/auxdisplay/auxdisplay_jhd1313.c +++ b/drivers/auxdisplay/auxdisplay_jhd1313.c @@ -300,7 +300,7 @@ static int auxdisplay_jhd1313_initialize(const struct device *dev) auxdisplay_jhd1313_reg_set(config->bus.bus, 0x01, 0x05); auxdisplay_jhd1313_reg_set(config->bus.bus, 0x08, 0xAA); - /* Now set the background colour to white */ + /* Now set the background colour to black */ LOG_DBG("Background set to off"); auxdisplay_jhd1313_backlight_set(dev, 0);