@@ -194,9 +194,6 @@ static void test_clock_control_request(const struct test_clk_context *clk_contex
194
194
clk_dev = clk_context -> clk_dev ;
195
195
clk_spec = & clk_context -> clk_specs [u ];
196
196
197
- zassert_true (device_is_ready (clk_dev ),
198
- "%s is not ready" , clk_dev -> name );
199
-
200
197
TC_PRINT ("Applying clock (%s) spec: frequency %d, accuracy %d, precision "
201
198
"%d\n" ,
202
199
clk_dev -> name , clk_spec -> frequency , clk_spec -> accuracy ,
@@ -209,6 +206,7 @@ static void test_clock_control_request(const struct test_clk_context *clk_contex
209
206
#if CONFIG_BOARD_NRF54H20DK_NRF54H20_CPUAPP
210
207
ZTEST (nrf2_clock_control , test_cpuapp_hsfll_control )
211
208
{
209
+
212
210
TC_PRINT ("APPLICATION DOMAIN HSFLL test\n" );
213
211
/* Wait for the DVFS init to complete */
214
212
k_msleep (3000 );
@@ -242,9 +240,6 @@ ZTEST(nrf2_clock_control, test_invalid_fll16m_clock_spec_response)
242
240
clk_dev = clk_context -> clk_dev ;
243
241
clk_spec = & clk_context -> clk_specs [u ];
244
242
245
- zassert_true (device_is_ready (clk_dev ),
246
- "%s is not ready" , clk_dev -> name );
247
-
248
243
TC_PRINT ("Applying clock (%s) spec: frequency %d, accuracy %d, precision "
249
244
"%d\n" ,
250
245
clk_dev -> name , clk_spec -> frequency , clk_spec -> accuracy ,
@@ -290,9 +285,6 @@ ZTEST(nrf2_clock_control, test_safe_request_cancellation)
290
285
const struct device * clk_dev = clk_context -> clk_dev ;
291
286
const struct nrf_clock_spec * clk_spec = & test_clk_specs_lfclk [0 ];
292
287
293
- zassert_true (device_is_ready (clk_dev ),
294
- "%s is not ready" , clk_dev -> name );
295
-
296
288
TC_PRINT ("Safe clock request cancellation\n" );
297
289
TC_PRINT ("Clock under test: %s\n" , clk_dev -> name );
298
290
sys_notify_init_spinwait (& cli .notify );
0 commit comments