mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 18:14:24 +00:00
Merge "style: fix functions definitions" into integration
This commit is contained in:
commit
7b25a5a515
3 changed files with 5 additions and 5 deletions
|
@ -93,8 +93,8 @@ uint32_t read_reg_porsr1(void);
|
|||
******************************************************************************/
|
||||
bool check_boot_mode_secure(uint32_t *mode);
|
||||
|
||||
const soc_info_t *get_soc_info();
|
||||
const devdisr5_info_t *get_devdisr5_info();
|
||||
const soc_info_t *get_soc_info(void);
|
||||
const devdisr5_info_t *get_devdisr5_info(void);
|
||||
|
||||
void dcfg_init(dcfg_init_info_t *dcfg_init_data);
|
||||
bool is_sec_enabled(void);
|
||||
|
|
|
@ -279,7 +279,7 @@ local once_t made = ONCE_INIT;
|
|||
combinations of CRC register values and incoming bytes.
|
||||
*/
|
||||
|
||||
local void make_crc_table()
|
||||
local void make_crc_table(void)
|
||||
{
|
||||
unsigned i, j, n;
|
||||
z_crc_t p;
|
||||
|
@ -498,7 +498,7 @@ local void write_table64(out, table, k)
|
|||
}
|
||||
|
||||
/* Actually do the deed. */
|
||||
int main()
|
||||
int main(void)
|
||||
{
|
||||
make_crc_table();
|
||||
return 0;
|
||||
|
|
|
@ -342,7 +342,7 @@ struct inflate_state FAR *state;
|
|||
|
||||
a.out > inffixed.h
|
||||
*/
|
||||
void makefixed()
|
||||
void makefixed(void)
|
||||
{
|
||||
unsigned low, size;
|
||||
struct inflate_state state;
|
||||
|
|
Loading…
Add table
Reference in a new issue