diff options
Diffstat (limited to 'stmhal/moduos.c')
-rw-r--r-- | stmhal/moduos.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/stmhal/moduos.c b/stmhal/moduos.c index 95446cdb0..ad0913fae 100644 --- a/stmhal/moduos.c +++ b/stmhal/moduos.c @@ -351,16 +351,7 @@ STATIC const mp_map_elem_t os_module_globals_table[] = { #endif }; -STATIC const mp_obj_dict_t os_module_globals = { - .base = {&mp_type_dict}, - .map = { - .all_keys_are_qstrs = 1, - .table_is_fixed_array = 1, - .used = MP_ARRAY_SIZE(os_module_globals_table), - .alloc = MP_ARRAY_SIZE(os_module_globals_table), - .table = (mp_map_elem_t*)os_module_globals_table, - }, -}; +STATIC MP_DEFINE_CONST_DICT(os_module_globals, os_module_globals_table); const mp_obj_module_t mp_module_uos = { .base = { &mp_type_module }, |