From 3b6e8c25be702266871b5d4719f1208e6036197e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Chru=C5=9Bci=C5=84ski?= Date: Fri, 17 May 2024 12:59:10 +0200 Subject: [PATCH] tests: drivers: nrfx_integration_test: Align to nrfx_glue change MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit NRFX_GPIOTE_CHANNELS_USED is no longer present and it is replaced by instance specific define (e.g. NRFX_GPIOTE130_CHANNELS_USED). Align test which was using that define. Signed-off-by: Krzysztof Chruściński --- tests/drivers/nrfx_integration_test/src/main.c | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/drivers/nrfx_integration_test/src/main.c b/tests/drivers/nrfx_integration_test/src/main.c index af2115f4761c..b9c4425b69a0 100644 --- a/tests/drivers/nrfx_integration_test/src/main.c +++ b/tests/drivers/nrfx_integration_test/src/main.c @@ -52,7 +52,6 @@ ZTEST(test_nrfx_integration, test_build) used_resources = NRFX_DPPI_CHANNELS_USED | NRFX_DPPI_GROUPS_USED | NRFX_PPI_CHANNELS_USED | NRFX_PPI_GROUPS_USED | - NRFX_GPIOTE_CHANNELS_USED | NRFX_EGUS_USED | NRFX_TIMERS_USED; }