8000 atmel-samd: Remove module name from struct. · sparkfun/circuitpython@b1be9f5 · GitHub
[go: up one dir, main page]

Skip to content

Commit b1be9f5

Browse files
committed
atmel-samd: Remove module name from struct.
1 parent 12b6b78 commit b1be9f5

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

atmel-samd/modmachine.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ STATIC MP_DEFINE_CONST_DICT(machine_module_globals, machine_module_globals_table
5656

5757
const mp_obj_module_t machine_module = {
5858
.base = { &mp_type_module },
59-
.name = MP_QSTR_umachine,
6059
.globals = (mp_obj_dict_t*)&machine_module_globals,
6160
};
6261

atmel-samd/moduos.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,5 @@ STATIC MP_DEFINE_CONST_DICT(os_module_globals, os_module_globals_table);
380380

381381
const mp_obj_module_t uos_module = {
382382
.base = { &mp_type_module },
383-
.name = MP_QSTR_uos,
384383
.globals = (mp_obj_dict_t*)&os_module_globals,
385384
};

atmel-samd/modutime.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,5 @@ STATIC MP_DEFINE_CONST_DICT(time_module_globals, time_module_globals_table);
7676

7777
const mp_obj_module_t utime_module = {
7878
.base = { &mp_type_module },
79-
.name = MP_QSTR_utime,
8079
.globals = (mp_obj_dict_t*)&time_module_globals,
8180
};

0 commit comments

Comments
 (0)
0