Skip to content

Commit cf01fb6

Browse files
committed
[fix]fix bugs
1 parent b685226 commit cf01fb6

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

L2_Core/hal/src/ek_hal_gpio.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
ek_list_node_t ek_hal_gpio_head;
55

6-
static void xxx_pin_set(vopd);
7-
static void xxx_pin_reset(vopd);
8-
static void xxx_pin_toggle(vopd);
6+
static void xxx_pin_set(void);
7+
static void xxx_pin_reset(void);
8+
static void xxx_pin_toggle(void);
99

1010
ek_hal_gpio_t hal_drv_gpio_xxx_pin = {
1111
.idx = 1,
@@ -14,15 +14,15 @@ ek_hal_gpio_t hal_drv_gpio_xxx_pin = {
1414
.toggle = xxx_pin_toggle,
1515
};
1616

17-
static void xxx_pin_set(vopd)
17+
static void xxx_pin_set(void)
1818
{
1919
}
2020

21-
static void xxx_pin_reset(vopd)
21+
static void xxx_pin_reset(void)
2222
{
2323
}
2424

25-
static void xxx_pin_toggle(vopd)
25+
static void xxx_pin_toggle(void)
2626
{
2727
}
2828

0 commit comments

Comments
 (0)