From 708e23aba506da9f8ec9be7c947cd166ab785af7 Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Thu, 14 Aug 2025 16:03:10 -0700 Subject: [PATCH] Switch to ifdef to make -Wundef happy --- components/esp_lcd/include/esp_lcd_io_parl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_lcd/include/esp_lcd_io_parl.h b/components/esp_lcd/include/esp_lcd_io_parl.h index d8f1557aaf..9b41b1873c 100644 --- a/components/esp_lcd/include/esp_lcd_io_parl.h +++ b/components/esp_lcd/include/esp_lcd_io_parl.h @@ -17,7 +17,7 @@ extern "C" { #endif -#if SOC_PARLIO_SUPPORTED +#ifdef SOC_PARLIO_SUPPORTED /** * @brief Parallel Panel IO configuration structure, for intel 8080 interface(8 data-lines) or SPI interface(1 data-lines) */