From 3b603f29ec093b77b6fad72d77becd5375310637 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sat, 29 Nov 2014 14:39:27 +0000 Subject: Use MP_DEFINE_CONST_DICT macro to define module dicts. This is just a clean-up of the code. Generated code is exactly the same. --- esp8266/modpyb.c | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'esp8266') diff --git a/esp8266/modpyb.c b/esp8266/modpyb.c index 49df418a2..d40745b8f 100644 --- a/esp8266/modpyb.c +++ b/esp8266/modpyb.c @@ -155,16 +155,7 @@ STATIC const mp_map_elem_t pyb_module_globals_table[] = { { MP_OBJ_NEW_QSTR(MP_QSTR_sync), (mp_obj_t)&pyb_sync_obj }, }; -STATIC const mp_obj_dict_t pyb_module_globals = { - .base = {&mp_type_dict}, - .map = { - .all_keys_are_qstrs = 1, - .table_is_fixed_array = 1, - .used = MP_ARRAY_SIZE(pyb_module_globals_table), - .alloc = MP_ARRAY_SIZE(pyb_module_globals_table), - .table = (mp_map_elem_t*)pyb_module_globals_table, - }, -}; +STATIC MP_DEFINE_CONST_DICT(pyb_module_globals, pyb_module_globals_table); const mp_obj_module_t pyb_module = { .base = { &mp_type_module }, -- cgit v1.2.3