Lines Matching full:inst
24 #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), \
36 .size = DT_INST_REG_SIZE_BY_NAME(inst, memory), \
37 .status_reg_addr = DT_INST_REG_ADDR_BY_NAME(inst, status), \