Changeset e94f730 in mainline for kernel/arch/mips32/src/mm/frame.c


Ignore:
Timestamp:
2009-02-17T00:49:50Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
85156d3
Parents:
06da55b
Message:

eliminate non-standard -D$(MACHINE)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/mips32/src/mm/frame.c

    r06da55b re94f730  
    7878static bool frame_available(pfn_t frame)
    7979{
    80 #ifdef msim
     80#ifdef MACHINE_msim
    8181        /* MSIM device (dprinter) */
    8282        if (frame == (KA2PA(MSIM_VIDEORAM) >> ZERO_PAGE_WIDTH))
     
    8888#endif
    8989
    90 #ifdef simics
     90#ifdef MACHINE_simics
    9191        /* Simics device (serial line) */
    9292        if (frame == (KA2PA(SERIAL_ADDRESS) >> ZERO_PAGE_WIDTH))
     
    9494#endif
    9595
    96 #if defined(lgxemul) || defined(bgxemul)
     96#if defined(MACHINE_lgxemul) || defined(MACHINE_bgxemul)
    9797        /* gxemul devices */
    9898        if (overlaps(frame << ZERO_PAGE_WIDTH, ZERO_PAGE_SIZE,
Note: See TracChangeset for help on using the changeset viewer.