Ignore:
Timestamp:
Aug 21, 2018, 9:50:01 PM (6 years ago)
Author:
viala@…
Message:

[boot] Add void type to function prototypes with no parameter

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/boot/tsar_mips32/boot.c

    r457 r474  
    116116// address used by the WTI to activate remote CP0s
    117117
    118 extern void                     boot_entry();    // boot_loader entry point
     118extern void                     boot_entry( void );    // boot_loader entry point
    119119
    120120/*********************************************************************************
     
    145145 * This function loads the arch_info.bin file into the boot cluster memory.
    146146 ***********************************************************************************/
    147 static void boot_archinfo_load()
     147static void boot_archinfo_load( void )
    148148{
    149149    archinfo_header_t* header = (archinfo_header_t*)ARCHINFO_BASE; 
     
    179179 * It set the global variables defining the kernel layout.
    180180 *************************************************************************************/
    181 static void boot_kernel_load()
     181static void boot_kernel_load( void )
    182182{
    183183    Elf32_Ehdr * elf_header;      // pointer on kernel.elf header. 
Note: See TracChangeset for help on using the changeset viewer.