blob: ed5870c779f92d940609b811b635d457bece2219 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef __ASM_XTENSA_FLAT_H
3#define __ASM_XTENSA_FLAT_H
4
5#include <asm/unaligned.h>
6
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00007static inline int flat_get_addr_from_rp(u32 __user *rp, u32 relval, u32 flags,
David Brazdil0f672f62019-12-10 10:32:29 +00008 u32 *addr)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00009{
10 *addr = get_unaligned((__force u32 *)rp);
11 return 0;
12}
13static inline int flat_put_addr_at_rp(u32 __user *rp, u32 addr, u32 rel)
14{
15 put_unaligned(addr, (__force u32 *)rp);
16 return 0;
17}
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000018
19#endif /* __ASM_XTENSA_FLAT_H */