summaryrefslogblamecommitdiffstats
path: root/arch/arm/kernel/insn.h
blob: 994d60fd3ff58c727b80a21469238811a0fb08e5 (plain) (tree)


















                                                                  
#ifndef __ASM_ARM_INSN_H
#define __ASM_ARM_INSN_H

unsigned long
__arm_gen_branch(unsigned long pc, unsigned long addr, bool link);

static inline unsigned long
arm_gen_branch(unsigned long pc, unsigned long addr)
{
	return __arm_gen_branch(pc, addr, false);
}

static inline unsigned long
arm_gen_branch_link(unsigned long pc, unsigned long addr)
{
	return __arm_gen_branch(pc, addr, true);
}

#endif