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
|
@ -25,7 +25,7 @@ struct csip_pending_notifications {
|
|||
* the array containing this struct, if the security manager overwrites
|
||||
* the oldest keys, we also overwrite the oldest entry
|
||||
*/
|
||||
#if IS_ENABLED(CONFIG_BT_KEYS_OVERWRITE_OLDEST)
|
||||
#if defined(CONFIG_BT_KEYS_OVERWRITE_OLDEST)
|
||||
uint32_t age;
|
||||
#endif /* CONFIG_BT_KEYS_OVERWRITE_OLDEST */
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue