mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/netif_init_semicolons' into 'master'
esp_netif: Remove trailing semicolons from netif IF's (GitHub PR) Closes IDFGH-8631 See merge request espressif/esp-idf!20998
This commit is contained in:
commit
a61861f6b6
@ -42,7 +42,7 @@ extern "C" {
|
||||
.if_desc = "ap", \
|
||||
.route_prio = 10, \
|
||||
.bridge_info = NULL \
|
||||
};
|
||||
}
|
||||
#endif
|
||||
|
||||
#define ESP_NETIF_INHERENT_DEFAULT_ETH() \
|
||||
@ -56,7 +56,7 @@ extern "C" {
|
||||
.if_desc = "eth", \
|
||||
.route_prio = 50, \
|
||||
.bridge_info = NULL \
|
||||
};
|
||||
}
|
||||
|
||||
#define ESP_NETIF_INHERENT_DEFAULT_PPP() \
|
||||
{ \
|
||||
@ -69,7 +69,7 @@ extern "C" {
|
||||
.if_desc = "ppp", \
|
||||
.route_prio = 20, \
|
||||
.bridge_info = NULL \
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -85,7 +85,7 @@ extern "C" {
|
||||
.if_desc = "br", \
|
||||
.route_prio = 70, \
|
||||
.bridge_info = NULL \
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Default configuration reference of ethernet interface
|
||||
|
Loading…
Reference in New Issue
Block a user