1
0
Fork 0
android_kernel_rockchip_tart/arch/arc/kernel/unaligned.h
2025-06-27 00:32:42 -05:00

16 lines
327 B
C

struct pt_regs;
struct callee_regs;
#ifdef CONFIG_ARC_EMUL_UNALIGNED
int misaligned_fixup(unsigned long address, struct pt_regs *regs,
struct callee_regs *cregs);
#else
static inline int
misaligned_fixup(unsigned long address, struct pt_regs *regs,
struct callee_regs *cregs)
{
/* Not fixed */
return 1;
}
#endif