Skip to content
Merged
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
2 changes: 1 addition & 1 deletion drivers/clock_control/clock_control_nrf2_fll16m.c
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ static int fll16m_init(const struct device *dev)
fll16m_work_handler);
}

static struct nrf_clock_control_driver_api fll16m_drv_api = {
static DEVICE_API(nrf_clock_control, fll16m_drv_api) = {
.std_api = {
.on = api_nosys_on_off,
.off = api_nosys_on_off,
Expand Down
2 changes: 1 addition & 1 deletion drivers/clock_control/clock_control_nrf2_hfxo.c
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ static int init_hfxo(const struct device *dev)
return 0;
}

static struct nrf_clock_control_driver_api drv_api_hfxo = {
static DEVICE_API(nrf_clock_control, drv_api_hfxo) = {
.std_api = {
.on = api_nosys_on_off,
.off = api_nosys_on_off,
Expand Down
2 changes: 1 addition & 1 deletion drivers/clock_control/clock_control_nrf2_hsfll.c
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ static int hsfll_init(const struct device *dev)
return 0;
}

static struct nrf_clock_control_driver_api hsfll_drv_api = {
static DEVICE_API(nrf_clock_control, hsfll_drv_api) = {
.std_api = {
.on = api_nosys_on_off,
.off = api_nosys_on_off,
Expand Down
2 changes: 1 addition & 1 deletion drivers/clock_control/clock_control_nrf2_lfclk.c
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ static int lfclk_init(const struct device *dev)
lfclk_work_handler);
}

static struct nrf_clock_control_driver_api lfclk_drv_api = {
static DEVICE_API(nrf_clock_control, lfclk_drv_api) = {
.std_api = {
.on = api_nosys_on_off,
.off = api_nosys_on_off,
Expand Down
Loading