Skip to content

Commit 0ce5d43

Browse files
committed
Fix gn include warnings
Signed-off-by: Adrian Gielniewski <adrian.gielniewski@nordicsemi.no>
1 parent 30a53af commit 0ce5d43

File tree

8 files changed

+10
-8
lines changed

8 files changed

+10
-8
lines changed

examples/light-switch-app/cc13x4_26x4/src/AppTask.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
#include <ti/drivers/apps/LED.h>
6363

6464
#if CHIP_CONFIG_ENABLE_ICD_UAT
65-
#include "app/icd/server/ICDNotifier.h"
65+
#include "app/icd/server/ICDNotifier.h" // nogncheck
6666
#endif
6767

6868
/* syscfg */

examples/lighting-app/cc13x4_26x4/src/AppTask.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
#include <ti/drivers/apps/LED.h>
5858

5959
#if CHIP_CONFIG_ENABLE_ICD_UAT
60-
#include "app/icd/server/ICDNotifier.h"
60+
#include "app/icd/server/ICDNotifier.h" // nogncheck
6161
#endif
6262

6363
/* syscfg */

examples/lock-app/cc13x4_26x4/src/AppTask.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
#include <ti/drivers/apps/LED.h>
5757

5858
#if CHIP_CONFIG_ENABLE_ICD_UAT
59-
#include "app/icd/server/ICDNotifier.h"
59+
#include "app/icd/server/ICDNotifier.h" // nogncheck
6060
#endif
6161

6262
/* syscfg */

examples/platform/linux/AppMain.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
#include <app/clusters/device-energy-management-server/DeviceEnergyManagementTestEventTriggerHandler.h>
9999
#endif
100100
#if CHIP_CONFIG_ENABLE_ICD_SERVER
101-
#include <app/icd/server/ICDManager.h>
101+
#include <app/icd/server/ICDManager.h> // nogncheck
102102
#endif
103103
#include <app/TestEventTriggerDelegate.h>
104104

examples/pump-app/cc13x4_26x4/main/AppTask.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
#include <ti/drivers/apps/LED.h>
5959

6060
#if CHIP_CONFIG_ENABLE_ICD_UAT
61-
#include "app/icd/server/ICDNotifier.h"
61+
#include "app/icd/server/ICDNotifier.h" // nogncheck
6262
#endif
6363

6464
/* syscfg */

examples/pump-controller-app/cc13x4_26x4/main/AppTask.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
#include <ti/drivers/apps/LED.h>
5454

5555
#if CHIP_CONFIG_ENABLE_ICD_UAT
56-
#include "app/icd/server/ICDNotifier.h"
56+
#include "app/icd/server/ICDNotifier.h" // nogncheck
5757
#endif
5858

5959
/* syscfg */

src/app/clusters/icd-management-server/icd-management-server.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@
2525
#include <app-common/zap-generated/ids/Clusters.h>
2626
#include <app/AttributeAccessInterface.h>
2727
#include <app/AttributeAccessInterfaceRegistry.h>
28-
#include <app/icd/server/ICDNotifier.h>
28+
#if CHIP_CONFIG_ENABLE_ICD_CIP
29+
#include <app/icd/server/ICDNotifier.h> // nogncheck
30+
#endif
2931
#include <app/server/Server.h>
3032
#include <app/util/attribute-storage.h>
3133

src/app/clusters/icd-management-server/icd-management-server.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
#if CHIP_CONFIG_ENABLE_ICD_CIP
3232
#include <app/ConcreteAttributePath.h>
33-
#include <app/icd/server/ICDMonitoringTable.h>
33+
#include <app/icd/server/ICDMonitoringTable.h> // nogncheck
3434
#include <lib/core/CHIPPersistentStorageDelegate.h>
3535
#endif // CHIP_CONFIG_ENABLE_ICD_CIP
3636

0 commit comments

Comments
 (0)