build: fix unused tag string

Closes https://github.com/espressif/esp-idf/issues/8250
This commit is contained in:
morris
2022-01-17 14:37:30 +08:00
parent d0890037c5
commit e51474ef70
12 changed files with 26 additions and 24 deletions

View File

@@ -1,5 +1,5 @@
/*
* SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD
* SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
@@ -8,7 +8,7 @@
#include "esp_lcd_panel_ops.h"
#include "esp_lcd_panel_interface.h"
static const char *TAG = "lcd_panel";
static __attribute__((unused)) const char *TAG = "lcd_panel";
esp_err_t esp_lcd_panel_reset(esp_lcd_panel_handle_t panel)
{