blob: 53c905838d9330a07598c1310c7567e3ddde8591 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _ASM_PARISC_UNALIGNED_H_
#define _ASM_PARISC_UNALIGNED_H_
#include <asm-generic/unaligned.h>
#ifdef __KERNEL__
struct pt_regs;
void handle_unaligned(struct pt_regs *regs);
int check_unaligned(struct pt_regs *regs);
#endif
#endif /* _ASM_PARISC_UNALIGNED_H_ */
|