Skip to content

Commit

Permalink
fix(eppp): Fixed strict prototype API decl issue in SDIO
Browse files Browse the repository at this point in the history
  • Loading branch information
david-cermak committed Jun 24, 2024
1 parent d7eaa77 commit eb09e42
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions components/eppp_link/eppp_sdio_host.c
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ esp_err_t eppp_sdio_host_rx(esp_netif_t *netif)
return ESP_OK;
}

void eppp_sdio_host_deinit()
void eppp_sdio_host_deinit(void)
{
essl_sdio_deinit_dev(s_essl);
sdmmc_host_deinit();
Expand All @@ -189,11 +189,11 @@ esp_err_t eppp_sdio_host_rx(esp_netif_t *netif)
return ESP_ERR_NOT_SUPPORTED;
}

void eppp_sdio_host_deinit()
void eppp_sdio_host_deinit(void)
{
}

esp_err_t eppp_sdio_host_init()
esp_err_t eppp_sdio_host_init(struct eppp_config_sdio_s *config)
{
return ESP_ERR_NOT_SUPPORTED;
}
Expand Down
2 changes: 1 addition & 1 deletion components/eppp_link/eppp_sdio_slave.c
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ esp_err_t eppp_sdio_slave_rx(esp_netif_t *netif)
return ESP_ERR_NOT_SUPPORTED;
}

void eppp_sdio_slave_deinit()
void eppp_sdio_slave_deinit(void)
{
}

Expand Down

0 comments on commit eb09e42

Please sign in to comment.