Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / arch / arc / kernel / unaligned.h
blob5244453bb85f7f1d296b6d75a4ebedfc898cc631
1 struct pt_regs;
2 struct callee_regs;
4 #ifdef CONFIG_ARC_EMUL_UNALIGNED
5 int misaligned_fixup(unsigned long address, struct pt_regs *regs,
6 struct callee_regs *cregs);
7 #else
8 static inline int
9 misaligned_fixup(unsigned long address, struct pt_regs *regs,
10 struct callee_regs *cregs)
12 /* Not fixed */
13 return 1;
15 #endif