fix(eppp): Fixed strict prototype API decl issue in SDIO
This commit is contained in:
parent
d7eaa77b89
commit
eb09e42638
2 changed files with 4 additions and 4 deletions
|
|
@ -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();
|
||||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue