Changeset 524 for trunk


Ignore:
Timestamp:
Aug 30, 2018, 10:21:09 PM (6 years ago)
Author:
viala@…
Message:

[boot] Add extern qualifier to boot_loader function.

File:
1 edited

Legend:

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

    r499 r524  
    116116// address used by the WTI to activate remote CP0s
    117117
    118 extern void                     boot_entry( void );    // boot_loader entry point
     118// Functions called by boot_entry.S must be externs.
     119extern void boot_entry( void );    // boot_loader entry point
     120extern void boot_loader( lid_t lid, cxy_t cxy );
    119121
    120122/*********************************************************************************
     
    752754 * @ cxy    : cluster identifier,
    753755 *********************************************************************************/
    754 extern void boot_loader( lid_t lid,
    755                          cxy_t cxy )
     756void boot_loader( lid_t lid,
     757                  cxy_t cxy )
    756758{
    757759    boot_info_t * boot_info;       // pointer on local boot_info_t structure
Note: See TracChangeset for help on using the changeset viewer.