all: Fix "#if IS_ENABLED(CONFIG_FOO)" occurrences
Clean up occurrences of "#if IS_ENABLED(CONFIG_FOO)" an replace with classical "#if defined(CONFIG_FOO)". Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
This commit is contained in:
parent
ea33f2fce4
commit
66d4c64966
67 changed files with 128 additions and 128 deletions
|
@ -28,7 +28,7 @@ LOG_MODULE_REGISTER(bt_tbs_client, CONFIG_BT_TBS_CLIENT_LOG_LEVEL);
|
|||
#include "common/bt_str.h"
|
||||
|
||||
#define MAX_URI_SCHEME_LIST_SIZE 64
|
||||
#if IS_ENABLED(CONFIG_BT_TBS_CLIENT_GTBS)
|
||||
#if defined(CONFIG_BT_TBS_CLIENT_GTBS)
|
||||
#define BT_TBS_INSTANCE_MAX_CNT (CONFIG_BT_TBS_CLIENT_MAX_TBS_INSTANCES + 1)
|
||||
#else
|
||||
#define BT_TBS_INSTANCE_MAX_CNT CONFIG_BT_TBS_CLIENT_MAX_TBS_INSTANCES
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue