Changeset 5f85c91 in mainline for arch/amd64/src


Ignore:
Timestamp:
2005-11-08T12:22:35Z (20 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
36a140b
Parents:
389f41e
Message:

make configuration variables usage consistent

Location:
arch/amd64/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • arch/amd64/src/amd64.c

    r389f41e r5f85c91  
    7676                trap_register(VECTOR_SYSCALL, syscall);
    7777               
    78                 #ifdef __SMP__
     78                #ifdef CONFIG_SMP
    7979                trap_register(VECTOR_TLB_SHOOTDOWN_IPI, tlb_shootdown_ipi);
    8080                trap_register(VECTOR_WAKEUP_IPI, wakeup_ipi);
    81                 #endif /* __SMP__ */
     81                #endif /* CONFIG_SMP */
    8282        }
    8383}
     
    9595                memory_print_map();
    9696               
    97                 #ifdef __SMP__
     97                #ifdef CONFIG_SMP
    9898                acpi_init();
    99                 #endif /* __SMP__ */
     99                #endif /* CONFIG_SMP */
    100100        }
    101101}
  • arch/amd64/src/interrupt.c

    r389f41e r5f85c91  
    140140void nm_fault(__u8 n, __native stack[])
    141141{
    142 #ifdef FPU_LAZY     
     142#ifdef CONFIG_FPU_LAZY     
    143143        scheduler_fpu_lazy_request();
    144144#else
  • arch/amd64/src/smp/ap.S

    r389f41e r5f85c91  
    4040.section K_TEXT_START_2, "ax"
    4141
    42 #ifdef __SMP__
     42#ifdef CONFIG_SMP
    4343
    4444.global ap_boot
     
    101101       
    102102       
    103 #endif /* __SMP__ */
     103#endif /* CONFIG_SMP */
Note: See TracChangeset for help on using the changeset viewer.