xtensa/esp32: fix if define convention to use parentheses
This commit is contained in:
parent
ebf9af662e
commit
1d0a37cd10
|
@ -37,8 +37,8 @@
|
|||
|
||||
#include "esp32_i2s.h"
|
||||
|
||||
#if defined CONFIG_ESP32_I2S0 && !defined CONFIG_AUDIO_CS4344 || \
|
||||
defined CONFIG_ESP32_I2S1
|
||||
#if defined(CONFIG_ESP32_I2S0) && !defined(CONFIG_AUDIO_CS4344) || \
|
||||
defined(CONFIG_ESP32_I2S1)
|
||||
|
||||
/****************************************************************************
|
||||
* Public Functions
|
||||
|
|
|
@ -173,8 +173,8 @@ int esp32_twai_setup(void);
|
|||
*
|
||||
****************************************************************************/
|
||||
|
||||
#if defined CONFIG_ESP32_I2S0 && !defined CONFIG_AUDIO_CS4344 || \
|
||||
defined CONFIG_ESP32_I2S1
|
||||
#if defined(CONFIG_ESP32_I2S0) && !defined(CONFIG_AUDIO_CS4344) || \
|
||||
defined(CONFIG_ESP32_I2S1)
|
||||
int board_i2sdev_initialize(int port);
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue