mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
21a151d8ca
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
18 lines
573 B
C
18 lines
573 B
C
#ifndef __ASM_MACH_JMR3927_MANGLE_PORT_H
|
|
#define __ASM_MACH_JMR3927_MANGLE_PORT_H
|
|
|
|
extern unsigned long __swizzle_addr_b(unsigned long port);
|
|
#define __swizzle_addr_w(port) (port)
|
|
#define __swizzle_addr_l(port) (port)
|
|
#define __swizzle_addr_q(port) (port)
|
|
|
|
#define ioswabb(a, x) (x)
|
|
#define __mem_ioswabb(a, x) (x)
|
|
#define ioswabw(a, x) le16_to_cpu(x)
|
|
#define __mem_ioswabw(a, x) (x)
|
|
#define ioswabl(a, x) le32_to_cpu(x)
|
|
#define __mem_ioswabl(a, x) (x)
|
|
#define ioswabq(a, x) le64_to_cpu(x)
|
|
#define __mem_ioswabq(a, x) (x)
|
|
|
|
#endif /* __ASM_MACH_JMR3927_MANGLE_PORT_H */
|