On Mon, Nov 17, 2014 at 04:10:32PM +0000, Maciej W. Rozycki wrote: > + if (IS_ENABLED(CONFIG_CPU_MICROMIPS)) { > + insn_p->halfword[0] = insn.word >> 16; > + insn_p->halfword[1] = insn.word; > + } else > + *insn_p = insn; I think the IS_ENABLED() should be replaced with cpu_has_mmips? Ralf