mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:38:03 +00:00
17 lines
327 B
C
17 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
|
||
|
|