From fd63c5ff1f07410ea054f6ee916eaa1e0382fba3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kim=20B=C3=B8ndergaard?= Date: Wed, 9 Dec 2020 09:00:25 +0100 Subject: [PATCH] samples: drivers: display: Support for all solomon_ssd16xxfb based displays MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently the following shields will thus be supported waveshare_epaper_gdeh0154a07 waveshare_epaper_gdeh0213b1 waveshare_epaper_gdeh0213b72 waveshare_epaper_gdeh029a1 Signed-off-by: Kim Bøndergaard Signed-off-by: Kim Bøndergaard --- samples/drivers/display/src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/drivers/display/src/main.c b/samples/drivers/display/src/main.c index d6cc95c96c1..611402d9718 100644 --- a/samples/drivers/display/src/main.c +++ b/samples/drivers/display/src/main.c @@ -22,8 +22,8 @@ LOG_MODULE_REGISTER(sample, LOG_LEVEL_INF); #define DISPLAY_DEV_NAME DT_LABEL(DT_INST(0, solomon_ssd1306fb)) #endif -#if DT_NODE_HAS_STATUS(DT_INST(0, gooddisplay_gdeh0213b1), okay) -#define DISPLAY_DEV_NAME DT_LABEL(DT_INST(0, gooddisplay_gdeh0213b1)) +#if DT_NODE_HAS_STATUS(DT_INST(0, solomon_ssd16xxfb), okay) +#define DISPLAY_DEV_NAME DT_LABEL(DT_INST(0, solomon_ssd16xxfb)) #endif #if DT_NODE_HAS_STATUS(DT_INST(0, sitronix_st7789v), okay)