2021-10-27 18:46:41 +05:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef _ASM_PARISC_UNALIGNED_H
|
|
|
|
#define _ASM_PARISC_UNALIGNED_H
|
|
|
|
|
|
|
|
#include <asm-generic/unaligned.h>
|
|
|
|
|
2022-03-15 21:06:03 +05:00
|
|
|
#ifdef __KERNEL__
|
2021-10-27 18:46:41 +05:00
|
|
|
struct pt_regs;
|
|
|
|
void handle_unaligned(struct pt_regs *regs);
|
|
|
|
int check_unaligned(struct pt_regs *regs);
|
2022-03-15 21:06:03 +05:00
|
|
|
#endif
|
2021-10-27 18:46:41 +05:00
|
|
|
|
|
|
|
#endif /* _ASM_PARISC_UNALIGNED_H */
|