mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-04 05:04:33 +02: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:
@@ -42,7 +42,7 @@ extern "C" {
|
|||||||
.if_desc = "ap", \
|
.if_desc = "ap", \
|
||||||
.route_prio = 10, \
|
.route_prio = 10, \
|
||||||
.bridge_info = NULL \
|
.bridge_info = NULL \
|
||||||
};
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define ESP_NETIF_INHERENT_DEFAULT_ETH() \
|
#define ESP_NETIF_INHERENT_DEFAULT_ETH() \
|
||||||
@@ -56,7 +56,7 @@ extern "C" {
|
|||||||
.if_desc = "eth", \
|
.if_desc = "eth", \
|
||||||
.route_prio = 50, \
|
.route_prio = 50, \
|
||||||
.bridge_info = NULL \
|
.bridge_info = NULL \
|
||||||
};
|
}
|
||||||
|
|
||||||
#define ESP_NETIF_INHERENT_DEFAULT_PPP() \
|
#define ESP_NETIF_INHERENT_DEFAULT_PPP() \
|
||||||
{ \
|
{ \
|
||||||
@@ -69,7 +69,7 @@ extern "C" {
|
|||||||
.if_desc = "ppp", \
|
.if_desc = "ppp", \
|
||||||
.route_prio = 20, \
|
.route_prio = 20, \
|
||||||
.bridge_info = NULL \
|
.bridge_info = NULL \
|
||||||
};
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -85,7 +85,7 @@ extern "C" {
|
|||||||
.if_desc = "br", \
|
.if_desc = "br", \
|
||||||
.route_prio = 70, \
|
.route_prio = 70, \
|
||||||
.bridge_info = NULL \
|
.bridge_info = NULL \
|
||||||
};
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Default configuration reference of ethernet interface
|
* @brief Default configuration reference of ethernet interface
|
||||||
|
Reference in New Issue
Block a user