Skip to content

Commit 88bc5e0

Browse files
committed
Refactor mbed OS LWIP integration layer
1 parent b828904 commit 88bc5e0

File tree

5 files changed

+673
-570
lines changed

5 files changed

+673
-570
lines changed

features/FEATURE_LWIP/lwip-interface/emac_lwip.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ static void emac_lwip_state_change(void *data, bool up)
6363
* \param[in] action
6464
* \return ERR_OK or error code
6565
*/
66-
err_t igmp_mac_filter(struct netif *netif, const ip4_addr_t *group, u8_t action)
66+
static err_t igmp_mac_filter(struct netif *netif, const ip4_addr_t *group, u8_t action)
6767
{
6868
emac_interface_t *emac = netif->state;
6969
if (emac->ops->add_multicast_group == NULL) {
@@ -104,7 +104,7 @@ err_t igmp_mac_filter(struct netif *netif, const ip4_addr_t *group, u8_t action)
104104
* \param[in] action
105105
* \return ERR_OK or error code
106106
*/
107-
err_t mld_mac_filter(struct netif *netif, const ip6_addr_t *group, u8_t action)
107+
static err_t mld_mac_filter(struct netif *netif, const ip6_addr_t *group, u8_t action)
108108
{
109109
emac_interface_t *emac = netif->state;
110110
if (emac->ops->add_multicast_group == NULL) {

0 commit comments

Comments
 (0)