Home
last modified time | relevance | path

Searched refs:inst (Results 1 – 25 of 750) sorted by relevance

12345678910>>...30

/Zephyr-latest/subsys/bluetooth/audio/
Dvocs_client.c61 struct bt_vocs_client *inst; in vocs_client_notify_handler() local
67 inst = lookup_vocs_by_handle(conn, handle); in vocs_client_notify_handler()
69 if (!inst) { in vocs_client_notify_handler()
78 if (handle == inst->state_handle) { in vocs_client_notify_handler()
79 if (length == sizeof(inst->state)) { in vocs_client_notify_handler()
80 memcpy(&inst->state, data, length); in vocs_client_notify_handler()
81 LOG_DBG("Inst %p: Offset %d, counter %u", inst, inst->state.offset, in vocs_client_notify_handler()
82 inst->state.change_counter); in vocs_client_notify_handler()
83 if (inst->cb && inst->cb->state) { in vocs_client_notify_handler()
84 inst->cb->state(&inst->vocs, 0, inst->state.offset); in vocs_client_notify_handler()
[all …]
Daics_client.c40 static int aics_client_common_control(uint8_t opcode, struct bt_aics *inst);
62 struct bt_aics *inst; in aics_client_notify_handler() local
70 inst = lookup_aics_by_handle(conn, handle); in aics_client_notify_handler()
72 if (!inst) { in aics_client_notify_handler()
81 if (handle == inst->cli.state_handle) { in aics_client_notify_handler()
84 LOG_DBG("Inst %p: Gain %d, mute %u, gain_mode %u, counter %u", inst, in aics_client_notify_handler()
87 inst->cli.change_counter = state->change_counter; in aics_client_notify_handler()
89 if (inst->cli.cb && inst->cli.cb->state) { in aics_client_notify_handler()
90 inst->cli.cb->state(inst, 0, state->gain, in aics_client_notify_handler()
95 } else if (handle == inst->cli.status_handle) { in aics_client_notify_handler()
[all …]
Daics.c127 struct bt_aics *inst = BT_AUDIO_CHRC_USER_DATA(attr); in read_aics_state() local
129 LOG_DBG("gain %d, mute %u, gain_mode %u, counter %u", inst->srv.state.gain, in read_aics_state()
130 inst->srv.state.mute, inst->srv.state.gain_mode, inst->srv.state.change_counter); in read_aics_state()
132 return bt_gatt_attr_read(conn, attr, buf, len, offset, &inst->srv.state, in read_aics_state()
133 sizeof(inst->srv.state)); in read_aics_state()
140 struct bt_aics *inst = BT_AUDIO_CHRC_USER_DATA(attr); in read_aics_gain_settings() local
142 LOG_DBG("units %u, min %d, max %d", inst->srv.gain_settings.units, in read_aics_gain_settings()
143 inst->srv.gain_settings.minimum, inst->srv.gain_settings.maximum); in read_aics_gain_settings()
146 &inst->srv.gain_settings, in read_aics_gain_settings()
147 sizeof(inst->srv.gain_settings)); in read_aics_gain_settings()
[all …]
Dhas_client.c38 struct bt_has_client *inst = &clients[bt_conn_index(conn)]; in inst_by_conn() local
40 if (inst->conn == conn) { in inst_by_conn()
41 return inst; in inst_by_conn()
47 static void inst_cleanup(struct bt_has_client *inst) in inst_cleanup() argument
49 bt_conn_unref(inst->conn); in inst_cleanup()
51 (void)memset(inst, 0, sizeof(*inst)); in inst_cleanup()
54 static enum bt_has_capabilities get_capabilities(const struct bt_has_client *inst) in get_capabilities() argument
59 if (HANDLE_IS_VALID(inst->control_point_subscription.value_handle)) { in get_capabilities()
66 static void handle_read_preset_rsp(struct bt_has_client *inst, struct net_buf_simple *buf) in handle_read_preset_rsp() argument
73 LOG_DBG("conn %p buf %p", (void *)inst->conn, buf); in handle_read_preset_rsp()
[all …]
Dvocs.c53 struct bt_vocs_server *inst = BT_AUDIO_CHRC_USER_DATA(attr); in read_offset_state() local
55 LOG_DBG("offset %d, counter %u", inst->state.offset, inst->state.change_counter); in read_offset_state()
56 return bt_gatt_attr_read(conn, attr, buf, len, offset, &inst->state, in read_offset_state()
57 sizeof(inst->state)); in read_offset_state()
79 static void notify_work_reschedule(struct bt_vocs_server *inst, enum bt_vocs_notify notify, in notify_work_reschedule() argument
84 atomic_set_bit(inst->notify, notify); in notify_work_reschedule()
86 err = k_work_reschedule(&inst->notify_work, K_NO_WAIT); in notify_work_reschedule()
93 static void notify(struct bt_vocs_server *inst, enum bt_vocs_notify notify, in notify() argument
98 err = bt_gatt_notify_uuid(NULL, uuid, inst->service_p->attrs, data, len); in notify()
100 notify_work_reschedule(inst, notify, K_USEC(BT_AUDIO_NOTIFY_RETRY_DELAY_US)); in notify()
[all …]
Dtbs.c88 static bool inst_is_registered(const struct tbs_inst *inst) in inst_is_registered() argument
90 return inst->attrs != NULL; in inst_is_registered()
93 static bool inst_is_gtbs(const struct tbs_inst *inst) in inst_is_gtbs() argument
96 return inst == &gtbs_inst; in inst_is_gtbs()
102 static uint8_t inst_index(const struct tbs_inst *inst) in inst_index() argument
106 __ASSERT_NO_MSG(inst); in inst_index()
108 if (inst_is_gtbs(inst)) { in inst_index()
112 index = inst - svc_insts; in inst_index()
120 struct tbs_inst *inst = NULL; in inst_lookup_index() local
123 inst = &gtbs_inst; in inst_lookup_index()
[all …]
Dbap_broadcast_assistant.c116 static int read_recv_state(struct bap_broadcast_assistant_instance *inst, uint8_t idx);
118 static int16_t lookup_index_by_handle(struct bap_broadcast_assistant_instance *inst, in lookup_index_by_handle() argument
121 for (size_t i = 0U; i < ARRAY_SIZE(inst->recv_state_handles); i++) { in lookup_index_by_handle()
122 if (inst->recv_state_handles[i] == handle) { in lookup_index_by_handle()
134 struct bap_broadcast_assistant_instance *inst; in inst_by_conn() local
141 inst = &broadcast_assistants[bt_conn_index(conn)]; in inst_by_conn()
143 if (inst->conn == conn) { in inst_by_conn()
144 return inst; in inst_by_conn()
153 struct bap_broadcast_assistant_instance *inst = inst_by_conn(conn); in bap_broadcast_assistant_discover_complete() local
157 if (inst != NULL) { in bap_broadcast_assistant_discover_complete()
[all …]
/Zephyr-latest/soc/ite/ec/common/
Dsoc_dt.h13 #define IT8XXX2_DEV_WUC(idx, inst) \ argument
14 DEVICE_DT_GET(DT_PHANDLE(IT8XXX2_DT_INST_WUCCTRL(inst, idx), wucs))
15 #define IT8XXX2_DEV_WUC_MASK(idx, inst) \ argument
16 DT_PHA(IT8XXX2_DT_INST_WUCCTRL(inst, idx), wucs, mask)
27 #define IT8XXX2_DT_INST_WUCCTRL(inst, idx) \ argument
28 DT_INST_PHANDLE_BY_IDX(inst, wucctrl, idx)
37 #define IT8XXX2_DT_WUC_ITEMS_FUNC(idx, inst) \ argument
39 .wucs = IT8XXX2_DEV_WUC(idx, inst), \
40 .mask = IT8XXX2_DEV_WUC_MASK(idx, inst), \
50 #define IT8XXX2_DT_INST_WUCCTRL_LEN(inst) \ argument
[all …]
/Zephyr-latest/include/zephyr/devicetree/
Dpwms.h331 #define DT_INST_PWMS_CTLR_BY_IDX(inst, idx) \ argument
332 DT_PWMS_CTLR_BY_IDX(DT_DRV_INST(inst), idx)
343 #define DT_INST_PWMS_CTLR_BY_NAME(inst, name) \ argument
344 DT_PWMS_CTLR_BY_NAME(DT_DRV_INST(inst), name)
353 #define DT_INST_PWMS_CTLR(inst) DT_INST_PWMS_CTLR_BY_IDX(inst, 0) argument
363 #define DT_INST_PWMS_CELL_BY_IDX(inst, idx, cell) \ argument
364 DT_PWMS_CELL_BY_IDX(DT_DRV_INST(inst), idx, cell)
375 #define DT_INST_PWMS_CELL_BY_NAME(inst, name, cell) \ argument
376 DT_PWMS_CELL_BY_NAME(DT_DRV_INST(inst), name, cell)
384 #define DT_INST_PWMS_CELL(inst, cell) \ argument
[all …]
Dclocks.h261 #define DT_INST_CLOCKS_HAS_IDX(inst, idx) \ argument
262 DT_CLOCKS_HAS_IDX(DT_DRV_INST(inst), idx)
270 #define DT_INST_CLOCKS_HAS_NAME(inst, name) \ argument
271 DT_CLOCKS_HAS_NAME(DT_DRV_INST(inst), name)
278 #define DT_INST_NUM_CLOCKS(inst) \ argument
279 DT_NUM_CLOCKS(DT_DRV_INST(inst))
291 #define DT_INST_CLOCKS_CTLR_BY_IDX(inst, idx) \ argument
292 DT_CLOCKS_CTLR_BY_IDX(DT_DRV_INST(inst), idx)
301 #define DT_INST_CLOCKS_CTLR(inst) DT_INST_CLOCKS_CTLR_BY_IDX(inst, 0) argument
314 #define DT_INST_CLOCKS_CTLR_BY_NAME(inst, name) \ argument
[all …]
Dpinctrl.h311 #define DT_INST_PINCTRL_BY_IDX(inst, pc_idx, idx) \ argument
312 DT_PINCTRL_BY_IDX(DT_DRV_INST(inst), pc_idx, idx)
329 #define DT_INST_PINCTRL_0(inst, idx) \ argument
330 DT_PINCTRL_BY_IDX(DT_DRV_INST(inst), 0, idx)
344 #define DT_INST_PINCTRL_BY_NAME(inst, name, idx) \ argument
345 DT_PINCTRL_BY_NAME(DT_DRV_INST(inst), name, idx)
358 #define DT_INST_PINCTRL_NAME_TO_IDX(inst, name) \ argument
359 DT_PINCTRL_NAME_TO_IDX(DT_DRV_INST(inst), name)
371 #define DT_INST_PINCTRL_IDX_TO_NAME_TOKEN(inst, pc_idx) \ argument
372 DT_PINCTRL_IDX_TO_NAME_TOKEN(DT_DRV_INST(inst), pc_idx)
[all …]
/Zephyr-latest/drivers/dma/
Ddma_intel_adsp_hda_host_in.c23 #define INTEL_ADSP_HDA_DMA_HOST_IN_INIT(inst) \ argument
24 static void intel_adsp_hda_dma##inst##_irq_config(void); \
26 static const struct intel_adsp_hda_dma_cfg intel_adsp_hda_dma##inst##_config = { \
27 .base = DT_INST_REG_ADDR(inst), \
28 .regblock_size = DT_INST_REG_SIZE(inst), \
29 .dma_channels = DT_INST_PROP(inst, dma_channels), \
31 .irq_config = intel_adsp_hda_dma##inst##_irq_config \
34 static struct intel_adsp_hda_dma_data intel_adsp_hda_dma##inst##_data = {}; \
36 PM_DEVICE_DT_INST_DEFINE(inst, intel_adsp_hda_dma_pm_action); \
38 DEVICE_DT_INST_DEFINE(inst, &intel_adsp_hda_dma_init, \
[all …]
Ddma_intel_adsp_hda_host_out.c27 #define INTEL_ADSP_HDA_DMA_HOST_OUT_INIT(inst) \ argument
28 static void intel_adsp_hda_dma##inst##_irq_config(void); \
30 static const struct intel_adsp_hda_dma_cfg intel_adsp_hda_dma##inst##_config = { \
31 .base = DT_INST_REG_ADDR(inst), \
32 .regblock_size = DT_INST_REG_SIZE(inst), \
33 .dma_channels = DT_INST_PROP(inst, dma_channels), \
35 .irq_config = intel_adsp_hda_dma##inst##_irq_config, \
38 static struct intel_adsp_hda_dma_data intel_adsp_hda_dma##inst##_data = {}; \
40 PM_DEVICE_DT_INST_DEFINE(inst, intel_adsp_hda_dma_pm_action); \
42 DEVICE_DT_INST_DEFINE(inst, &intel_adsp_hda_dma_init, \
[all …]
/Zephyr-latest/soc/infineon/cat1a/psoc6_legacy/
Dcypress_psoc6_dt.h111 #define CY_PSOC6_PIN_TO_GPIO_REG_ADDR(inst, i) \ argument
112 DT_REG_ADDR(DT_PHANDLE(DT_INST_PINCTRL_0(inst, i), cypress_pins))
115 #define CY_PSOC6_PIN(inst, i) \ argument
116 DT_PHA(DT_INST_PINCTRL_0(inst, i), cypress_pins, pin)
119 #define CY_PSOC6_PIN_HSIOM(inst, i) \ argument
120 DT_PHA(DT_INST_PINCTRL_0(inst, i), cypress_pins, hsiom)
123 #define CY_PSOC6_PIN_FLAG(inst, i, flag) \ argument
124 DT_PROP(DT_INST_PINCTRL_0(inst, i), flag)
127 #define CY_PSOC6_PIN_FLAGS(inst, i) \ argument
128 (CY_PSOC6_PIN_FLAG(inst, i, bias_pull_up) << \
[all …]
/Zephyr-latest/soc/nuvoton/npcx/common/
Dsoc_dt.h40 #define NPCX_DT_INST_PROP_ENUM_OR(inst, prop, default_value) \ argument
41 NPCX_DT_PROP_ENUM_OR(DT_DRV_INST(inst), prop, default_value)
61 #define NPCX_DT_CLK_CFG_ITEM(inst) \ argument
63 .bus = NPCX_DT_INST_PROP_ENUM_OR(inst, clock_bus, \
64 DT_PHA(DT_DRV_INST(inst), clocks, bus)), \
65 .ctrl = DT_PHA(DT_DRV_INST(inst), clocks, ctl), \
66 .bit = DT_PHA(DT_DRV_INST(inst), clocks, bit), \
76 #define NPCX_DT_CLK_CFG_ITEM_BY_IDX(inst, i) \ argument
78 .bus = DT_CLOCKS_CELL_BY_IDX(DT_DRV_INST(inst), i, bus), \
79 .ctrl = DT_CLOCKS_CELL_BY_IDX(DT_DRV_INST(inst), i, ctl), \
[all …]
/Zephyr-latest/drivers/comparator/
Dcomparator_mcux_acmp.c82 #define MCUX_ACMP_DT_INST_ENUM(inst, name, prop) \ argument
83 MCUX_ACMP_ENUM(name, DT_INST_STRING_TOKEN(inst, prop))
85 #define MCUX_ACMP_DT_INST_ENUM_OR(inst, name, prop, or) \ argument
86 COND_CODE_1(DT_INST_NODE_HAS_PROP(inst, prop), \
87 (MCUX_ACMP_DT_INST_ENUM(inst, name, prop)), \
90 #define MCUX_ACMP_DT_INST_OFFSET_MODE(inst) \ argument
91 MCUX_ACMP_DT_INST_ENUM_OR(inst, OFFSET_MODE, offset_mode, LEVEL0)
93 #define MCUX_ACMP_DT_INST_HYST_MODE(inst) \ argument
94 MCUX_ACMP_DT_INST_ENUM_OR(inst, HYSTERESIS_MODE, hysteresis_mode, LEVEL0)
96 #define MCUX_ACMP_DT_INST_EN_HS_MODE(inst) \ argument
[all …]
/Zephyr-latest/drivers/sensor/st/lps2xdf/
Dlps2xdf.c154 #define LPS2XDF_CFG_IRQ(inst) \ argument
156 .gpio_int = GPIO_DT_SPEC_INST_GET(inst, drdy_gpios), \
157 .drdy_pulsed = DT_INST_PROP(inst, drdy_pulsed)
159 #define LPS2XDF_CFG_IRQ(inst) argument
162 #define LPS2XDF_CONFIG_COMMON(inst, name) \ argument
163 .odr = DT_INST_PROP(inst, odr), \
164 .lpf = DT_INST_PROP(inst, lpf), \
165 .avg = DT_INST_PROP(inst, avg), \
167 IF_ENABLED(DT_INST_NODE_HAS_PROP(inst, fs), \
168 (.fs = DT_INST_PROP(inst, fs),)) \
[all …]
/Zephyr-latest/modules/lvgl/input/
Dlvgl_encoder_input.c50 #define BUTTON_CODE(inst) DT_INST_PROP_OR(inst, button_input_code, -1) argument
51 #define ROTATION_CODE(inst) DT_INST_PROP(inst, rotation_input_code) argument
53 #define ASSERT_PROPERTIES(inst) \ argument
54 BUILD_ASSERT(IN_RANGE(ROTATION_CODE(inst), 0, 65536), \
56 BUILD_ASSERT(!DT_INST_NODE_HAS_PROP(inst, button_input_code) || \
57 IN_RANGE(BUTTON_CODE(inst), 0, 65536), \
59 BUILD_ASSERT(ROTATION_CODE(inst) != BUTTON_CODE(inst), \
62 #define LVGL_ENCODER_INPUT_DEFINE(inst) \ argument
63 ASSERT_PROPERTIES(inst); \
64 LVGL_INPUT_DEFINE(inst, encoder, CONFIG_LV_Z_ENCODER_INPUT_MSGQ_COUNT, \
[all …]
Dlvgl_keypad_input.c54 #define ASSERT_PROPERTIES(inst) \ argument
55 BUILD_ASSERT(DT_INST_PROP_LEN(inst, input_codes) == DT_INST_PROP_LEN(inst, lvgl_codes), \
58 #define LVGL_KEYPAD_INPUT_DEFINE(inst) \ argument
59 ASSERT_PROPERTIES(inst); \
60 LVGL_INPUT_DEFINE(inst, keypad, CONFIG_LV_Z_KEYPAD_INPUT_MSGQ_COUNT, \
62 static const uint16_t lvgl_keypad_input_codes_##inst[] = DT_INST_PROP(inst, input_codes); \
63 static const uint16_t lvgl_keypad_lvgl_codes_##inst[] = DT_INST_PROP(inst, lvgl_codes); \
64 static const struct lvgl_keypad_input_config lvgl_keypad_input_config_##inst = { \
65 .common_config.event_msgq = &LVGL_INPUT_EVENT_MSGQ(inst, keypad), \
66 .input_codes = lvgl_keypad_input_codes_##inst, \
[all …]
/Zephyr-latest/drivers/bbram/
Dnpcx.h24 #define BBRAM_NPCX_DECL_CONFIG(inst) \ argument
25 static uint8_t bbram_npcx_emul_buffer_##inst[DT_INST_REG_SIZE_BY_NAME(inst, memory)]; \
26 static uint8_t bbram_npcx_emul_status_##inst; \
27 static const struct bbram_npcx_config bbram_cfg_##inst = { \
28 .base_addr = (uintptr_t)bbram_npcx_emul_buffer_##inst, \
29 .size = DT_INST_REG_SIZE_BY_NAME(inst, memory), \
30 .status_reg_addr = (uintptr_t)&bbram_npcx_emul_status_##inst, \
33 #define BBRAM_NPCX_DECL_CONFIG(inst) \ argument
34 static const struct bbram_npcx_config bbram_cfg_##inst = { \
35 .base_addr = DT_INST_REG_ADDR_BY_NAME(inst, memory), \
[all …]
/Zephyr-latest/include/zephyr/bluetooth/audio/
Daics.h231 typedef void (*bt_aics_write_cb)(struct bt_aics *inst, int err);
247 typedef void (*bt_aics_state_cb)(struct bt_aics *inst, int err, int8_t gain,
265 typedef void (*bt_aics_gain_setting_cb)(struct bt_aics *inst, int err,
280 typedef void (*bt_aics_type_cb)(struct bt_aics *inst, int err, uint8_t type);
293 typedef void (*bt_aics_status_cb)(struct bt_aics *inst, int err, bool active);
306 typedef void (*bt_aics_description_cb)(struct bt_aics *inst, int err,
320 typedef void (*bt_aics_discover_cb)(struct bt_aics *inst, int err);
368 int bt_aics_discover(struct bt_conn *conn, struct bt_aics *inst,
381 int bt_aics_deactivate(struct bt_aics *inst);
394 int bt_aics_activate(struct bt_aics *inst);
[all …]
/Zephyr-latest/drivers/sensor/nuvoton/nuvoton_tach_npcx/
Dtach_nuvoton_npcx.c95 struct tach_reg *const inst = HAL_INSTANCE(dev); in tach_npcx_start_port_a() local
98 inst->TCNT1 = NPCX_TACHO_CNT_MAX; in tach_npcx_start_port_a()
99 inst->TCRA = NPCX_TACHO_CNT_MAX; in tach_npcx_start_port_a()
106 inst->TMCTRL |= BIT(NPCX_TMCTRL_TAEN); in tach_npcx_start_port_a()
109 inst->TCFG |= BIT(NPCX_TCFG_TADBEN); in tach_npcx_start_port_a()
112 SET_FIELD(inst->TCKC, NPCX_TCKC_C1CSEL_FIELD, data->input_clk == LFCLK in tach_npcx_start_port_a()
118 struct tach_reg *const inst = HAL_INSTANCE(dev); in tach_npcx_start_port_b() local
122 inst->TCNT2 = NPCX_TACHO_CNT_MAX; in tach_npcx_start_port_b()
123 inst->TCRB = NPCX_TACHO_CNT_MAX; in tach_npcx_start_port_b()
130 inst->TMCTRL |= BIT(NPCX_TMCTRL_TBEN); in tach_npcx_start_port_b()
[all …]
/Zephyr-latest/drivers/can/
Dcan_sam.c159 #define CAN_SAM_IRQ_CFG_FUNCTION(inst) \ argument
160 static void config_can_##inst##_irq(void) \
163 IRQ_CONNECT(DT_INST_IRQ_BY_NAME(inst, int0, irq), \
164 DT_INST_IRQ_BY_NAME(inst, int0, priority), can_mcan_line_0_isr, \
165 DEVICE_DT_INST_GET(inst), 0); \
166 irq_enable(DT_INST_IRQ_BY_NAME(inst, int0, irq)); \
167 IRQ_CONNECT(DT_INST_IRQ_BY_NAME(inst, int1, irq), \
168 DT_INST_IRQ_BY_NAME(inst, int1, priority), can_mcan_line_1_isr, \
169 DEVICE_DT_INST_GET(inst), 0); \
170 irq_enable(DT_INST_IRQ_BY_NAME(inst, int1, irq)); \
[all …]
/Zephyr-latest/drivers/pwm/
Dpwm_npcx.c56 struct pwm_reg *inst = config->base; in pwm_npcx_configure() local
59 inst->PWMCTL &= ~BIT(NPCX_PWMCTL_PWR); in pwm_npcx_configure()
62 inst->PWMCTL &= ~BIT(NPCX_PWMCTL_INVP); in pwm_npcx_configure()
65 SET_FIELD(inst->PWMCTL, NPCX_PWMCTL_HB_DC_CTL_FIELD, in pwm_npcx_configure()
69 SET_FIELD(inst->PWMCTLEX, NPCX_PWMCTLEX_FCK_SEL_FIELD, in pwm_npcx_configure()
74 inst->PWMCTL |= BIT(NPCX_PWMCTL_CKSEL); in pwm_npcx_configure()
76 inst->PWMCTL &= ~BIT(NPCX_PWMCTL_CKSEL); in pwm_npcx_configure()
89 struct pwm_reg *inst = config->base; in pwm_npcx_set_cycles() local
96 ctl = inst->PWMCTL | BIT(NPCX_PWMCTL_PWR); in pwm_npcx_set_cycles()
108 inst->PWMCTL = ctl; in pwm_npcx_set_cycles()
[all …]
/Zephyr-latest/include/zephyr/
Ddevicetree.h339 #define DT_INST(inst, compat) UTIL_CAT(DT_N_INST, DT_DASH(inst, compat)) argument
3869 #define DT_DRV_INST(inst) DT_INST(inst, DT_DRV_COMPAT) argument
3878 #define DT_INST_PARENT(inst) DT_PARENT(DT_DRV_INST(inst)) argument
3887 #define DT_INST_GPARENT(inst) DT_GPARENT(DT_DRV_INST(inst)) argument
3898 #define DT_INST_CHILD(inst, child) \ argument
3899 DT_CHILD(DT_DRV_INST(inst), child)
3910 #define DT_INST_CHILD_NUM(inst) DT_CHILD_NUM(DT_DRV_INST(inst)) argument
3921 #define DT_INST_CHILD_NUM_STATUS_OKAY(inst) \ argument
3922 DT_CHILD_NUM_STATUS_OKAY(DT_DRV_INST(inst))
3932 #define DT_INST_NODELABEL_STRING_ARRAY(inst) DT_NODELABEL_STRING_ARRAY(DT_DRV_INST(inst)) argument
[all …]

12345678910>>...30