Ignore:
Timestamp:
Jun 26, 2017, 6:45:41 PM (7 years ago)
Author:
ertl-honda
Message:

3.0.0のリリース版に追従

File:
1 edited

Legend:

Unmodified
Added
Removed
  • asp3_wo_tecs/trunk/arch/arm_gcc/common/gic_kernel_impl.c

    r302 r305  
    44 *      Advanced Standard Profile Kernel
    55 *
    6  *  Copyright (C) 2006-2015 by Embedded and Real-Time Systems Laboratory
     6 *  Copyright (C) 2006-2016 by Embedded and Real-Time Systems Laboratory
    77 *              Graduate School of Information Science, Nagoya Univ., JAPAN
    88 *
     
    5151 *  の責任を負わない.
    5252 *
    53  *  $Id: gic_kernel_impl.c 355 2015-07-25 10:26:02Z ertl-hiro $
     53 *  $Id: gic_kernel_impl.c 522 2016-01-14 06:56:53Z ertl-hiro $
    5454 */
    5555
     
    177177         */
    178178        for (i = GIC_INTNO_PPI0 / 16; i < GIC_TNUM_INTNO / 16; i++) {
    179 #ifdef GIC_ARM11MOCORE
     179#ifdef GIC_ARM11MPCORE
    180180                sil_wrw_mem(GICD_ICFGR(i), 0x55555555U);
    181 #else /* GIC_ARM11MOCORE */
     181#else /* GIC_ARM11MPCORE */
    182182                sil_wrw_mem(GICD_ICFGR(i), 0x00000000U);
    183 #endif /* GIC_ARM11MOCORE */
     183#endif /* GIC_ARM11MPCORE */
    184184        }
    185185
     
    229229
    230230        if ((intatr & TA_EDGE) != 0U) {
    231 #ifdef GIC_ARM11MOCORE
     231#ifdef GIC_ARM11MPCORE
    232232                gicd_config(intno, GICD_ICFGRn_EDGE|GICD_ICFGRn_1_N);
    233 #else /* GIC_ARM11MOCORE */
     233#else /* GIC_ARM11MPCORE */
    234234                gicd_config(intno, GICD_ICFGRn_EDGE);
    235 #endif /* GIC_ARM11MOCORE */
     235#endif /* GIC_ARM11MPCORE */
    236236                clear_int(intno);
    237237        }
    238238        else {
    239 #ifdef GIC_ARM11MOCORE
     239#ifdef GIC_ARM11MPCORE
    240240                gicd_config(intno, GICD_ICFGRn_LEVEL|GICD_ICFGRn_1_N);
    241 #else /* GIC_ARM11MOCORE */
     241#else /* GIC_ARM11MPCORE */
    242242                gicd_config(intno, GICD_ICFGRn_LEVEL);
    243 #endif /* GIC_ARM11MOCORE */
     243#endif /* GIC_ARM11MPCORE */
    244244        }
    245245
Note: See TracChangeset for help on using the changeset viewer.