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

[hal/x86_64] Add void type to function prototypes with no parameter

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/hal/x86_64/core/x86_printf.c

    r457 r482  
    4646static uint32_t x86_lock_val __in_kdata = 0;
    4747
    48 void x86_lock()
     48void x86_lock( void )
    4949{
    5050        while (!hal_atomic_cas(&x86_lock_val, 0, 1)) {
     
    5353}
    5454
    55 void x86_unlock()
     55void x86_unlock( void )
    5656{
    5757        while (!hal_atomic_cas(&x86_lock_val, 1, 0)) {
     
    7272}
    7373
    74 static void check_scroll()
     74static void check_scroll( void )
    7575{
    7676        char *base = (char *)iom_base + (0xB8000 - IOM_BEGIN);
Note: See TracChangeset for help on using the changeset viewer.