Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions drivers/mpsl/clock_control/nrfx_clock_mpsl.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,26 @@
}
}

void nrfx_clock_lfclk_start(void)
{
nrfx_clock_start(NRF_CLOCK_DOMAIN_LFCLK);

Check warning on line 43 in drivers/mpsl/clock_control/nrfx_clock_mpsl.c

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

LEADING_SPACE

drivers/mpsl/clock_control/nrfx_clock_mpsl.c:43 please, no spaces at the start of a line
}

void nrfx_clock_lfclk_stop(void)
{
nrfx_clock_stop(NRF_CLOCK_DOMAIN_LFCLK);

Check warning on line 48 in drivers/mpsl/clock_control/nrfx_clock_mpsl.c

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

LEADING_SPACE

drivers/mpsl/clock_control/nrfx_clock_mpsl.c:48 please, no spaces at the start of a line
}

void nrfx_clock_hfclk_start(void)
{
nrfx_clock_start(NRF_CLOCK_DOMAIN_HFCLK);

Check warning on line 53 in drivers/mpsl/clock_control/nrfx_clock_mpsl.c

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

LEADING_SPACE

drivers/mpsl/clock_control/nrfx_clock_mpsl.c:53 please, no spaces at the start of a line
}

void nrfx_clock_hfclk_stop(void)
{
nrfx_clock_stop(NRF_CLOCK_DOMAIN_HFCLK);

Check warning on line 58 in drivers/mpsl/clock_control/nrfx_clock_mpsl.c

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

LEADING_SPACE

drivers/mpsl/clock_control/nrfx_clock_mpsl.c:58 please, no spaces at the start of a line
}

void nrfx_clock_start(nrf_clock_domain_t domain)
{
switch (domain) {
Expand Down
4 changes: 2 additions & 2 deletions scripts/quarantine.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -216,10 +216,10 @@
comment: "https://nordicsemi.atlassian.net/browse/NRFX-8605"

- scenarios:
- sample.mcumgr.smp_svr.bt.*
- sample.mcumgr.smp_svr.serial.*
- sample.mcumgr.smp_svr.*
- sample.dfu.dfu_target
platforms:
- [email protected]/nrf54h20/cpuapp
- nrf54l15dk/nrf54l15/cpuapp
- thingy53/nrf5340/cpuapp
comment: "Requires rebase on collab-nrfx-4.0 branch"
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ manifest:
# https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/guides/modules.html
- name: zephyr
repo-path: sdk-zephyr
revision: a0491b6ceaf072ff7fa108ecfeddb7cbc6c3afa7
revision: pull/3467/head
import:
# In addition to the zephyr repository itself, NCS also
# imports the contents of zephyr/west.yml at the above
Expand Down
Loading