[NXP] Fix TC-I-2.2 test failure (#33876)

* [nxp noup][examples][common] Fix thermostat Identify cluster issue on endepoint 0

Signed-off-by: Martin Girardot <martin.girardot@nxp.com>

* [nxp noup][examples][common] Fix all cluster app Identify cluster issue on endepoint 0

Signed-off-by: Martin Girardot <martin.girardot@nxp.com>

---------

Signed-off-by: Martin Girardot <martin.girardot@nxp.com>
diff --git a/examples/all-clusters-app/nxp/common/main/DeviceCallbacks.cpp b/examples/all-clusters-app/nxp/common/main/DeviceCallbacks.cpp
index 527fa79..3b189b2 100644
--- a/examples/all-clusters-app/nxp/common/main/DeviceCallbacks.cpp
+++ b/examples/all-clusters-app/nxp/common/main/DeviceCallbacks.cpp
@@ -57,7 +57,7 @@
 }
 
 Identify gIdentify0 = {
-    chip::EndpointId{ 1 },
+    chip::EndpointId{ 0 },
     [](Identify *) { ChipLogProgress(Zcl, "onIdentifyStart"); },
     [](Identify *) { ChipLogProgress(Zcl, "onIdentifyStop"); },
     chip::app::Clusters::Identify::IdentifyTypeEnum::kNone,
diff --git a/examples/thermostat/nxp/common/main/DeviceCallbacks.cpp b/examples/thermostat/nxp/common/main/DeviceCallbacks.cpp
index d52d933..554112a 100644
--- a/examples/thermostat/nxp/common/main/DeviceCallbacks.cpp
+++ b/examples/thermostat/nxp/common/main/DeviceCallbacks.cpp
@@ -57,7 +57,7 @@
 }
 
 Identify gIdentify0 = {
-    chip::EndpointId{ 1 },
+    chip::EndpointId{ 0 },
     [](Identify *) { ChipLogProgress(Zcl, "onIdentifyStart"); },
     [](Identify *) { ChipLogProgress(Zcl, "onIdentifyStop"); },
     chip::app::Clusters::Identify::IdentifyTypeEnum::kNone,