Skip to content

Commit 86e8adc

Browse files
authored
Merge pull request #9638 from dhalbert/remove-STATIC
2 parents dfaecea + 1fe0a51 commit 86e8adc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ports/raspberrypi/boards/challenger_rp2350_bconnect/pins.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#include "shared-bindings/board/__init__.h"
88

9-
STATIC const mp_rom_map_elem_t board_module_globals_table[] = {
9+
static const mp_rom_map_elem_t board_module_globals_table[] = {
1010
CIRCUITPYTHON_BOARD_DICT_STANDARD_ITEMS
1111

1212
{ MP_ROM_QSTR(MP_QSTR_GP0), MP_ROM_PTR(&pin_GPIO0) },

ports/raspberrypi/boards/challenger_rp2350_wifi6_ble5/pins.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#include "shared-bindings/board/__init__.h"
88

9-
STATIC const mp_rom_map_elem_t board_module_globals_table[] = {
9+
static const mp_rom_map_elem_t board_module_globals_table[] = {
1010
CIRCUITPYTHON_BOARD_DICT_STANDARD_ITEMS
1111

1212
{ MP_ROM_QSTR(MP_QSTR_GP0), MP_ROM_PTR(&pin_GPIO0) },

ports/stm/tools/parse_pins_csv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
csv_reader = csv.reader(csv_file, delimiter=",")
1919
line_count = 0
2020

21-
print("STATIC const mp_rom_map_elem_t board_module_globals_table[] = {")
21+
print("static const mp_rom_map_elem_t board_module_globals_table[] = {")
2222
print(" { MP_ROM_QSTR(MP_QSTR_ID), MP_ROM_PTR(&board_module_id_obj) },")
2323

2424
for row in csv_reader:

0 commit comments

Comments
 (0)