mirror of https://github.com/ARMmbed/mbed-os.git
Add the missing input parameter
parent
4edbde80b9
commit
974864adba
|
@ -240,13 +240,13 @@ int SYS_SPIX_Init(const sys_cfg_spix_t *sys_cfg, uint32_t baud);
|
|||
* @brief System level shutdown for SPIX module
|
||||
* @returns E_NO_ERROR if everything is successful
|
||||
*/
|
||||
int SYS_SPIX_Shutdown();
|
||||
int SYS_SPIX_Shutdown(void);
|
||||
|
||||
/**
|
||||
* @brief Get the frequency of the SPIX module source clock
|
||||
* @returns frequency in Hz
|
||||
*/
|
||||
uint32_t SYS_SPIX_GetFreq();
|
||||
uint32_t SYS_SPIX_GetFreq(void);
|
||||
|
||||
/**
|
||||
* @brief System level initialization for SPIS module.
|
||||
|
@ -259,13 +259,13 @@ int SYS_SPIS_Init(const sys_cfg_spix_t *sys_cfg);
|
|||
* @brief System level shutdown for SPIS module
|
||||
* @returns E_NO_ERROR if everything is successful
|
||||
*/
|
||||
int SYS_SPIS_Shutdown();
|
||||
int SYS_SPIS_Shutdown(void);
|
||||
|
||||
/**
|
||||
* @brief Get the frequency of the SPIS module source clock
|
||||
* @returns frequency in Hz
|
||||
*/
|
||||
uint32_t SYS_SPIS_GetFreq();
|
||||
uint32_t SYS_SPIS_GetFreq(void);
|
||||
|
||||
/**
|
||||
* @brief System level initialization for OWM module.
|
||||
|
|
|
@ -299,14 +299,14 @@ int SYS_SPIX_Init(const sys_cfg_spix_t *sys_cfg, uint32_t baud);
|
|||
* @return #E_NO_ERROR if everything is successful
|
||||
* @ingroup spix
|
||||
*/
|
||||
int SYS_SPIX_Shutdown();
|
||||
int SYS_SPIX_Shutdown(void);
|
||||
|
||||
/**
|
||||
* @brief Get the frequency of the SPIX module source clock
|
||||
* @return frequency in Hz
|
||||
* @ingroup spix
|
||||
*/
|
||||
uint32_t SYS_SPIX_GetFreq();
|
||||
uint32_t SYS_SPIX_GetFreq(void);
|
||||
|
||||
/**
|
||||
* @brief System level initialization for OWM module.
|
||||
|
|
Loading…
Reference in New Issue