Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
linux
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
2
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
bdd15a2
Documentation
LICENSES
arch
alpha
arc
arm
arm64
c6x
boot
configs
include
asm
Kbuild
asm-offsets.h
bitops.h
bug.h
cache.h
cacheflush.h
checksum.h
clock.h
cmpxchg.h
delay.h
dscr.h
elf.h
flat.h
ftrace.h
hardirq.h
irq.h
irqflags.h
linkage.h
megamod-pic.h
module.h
page.h
pgtable.h
processor.h
procinfo.h
ptrace.h
sections.h
setup.h
soc.h
special_insns.h
string.h
switch_to.h
syscall.h
syscalls.h
thread_info.h
timer64.h
timex.h
tlb.h
traps.h
uaccess.h
unaligned.h
uapi
kernel
lib
mm
platforms
Kconfig
Kconfig.debug
Makefile
csky
h8300
hexagon
ia64
m68k
microblaze
mips
nds32
nios2
openrisc
parisc
powerpc
riscv
s390
sh
sparc
um
unicore32
x86
xtensa
.gitignore
Kconfig
block
certs
crypto
drivers
fs
include
init
ipc
kernel
lib
mm
net
samples
scripts
security
sound
tools
usr
virt
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
Breadcrumbs
linux
/
arch
/
c6x
/
include
/
asm
/
flat.h
Blame
Blame
Latest commit
History
History
19 lines (16 loc) · 448 Bytes
Breadcrumbs
linux
/
arch
/
c6x
/
include
/
asm
/
flat.h
Top
File metadata and controls
Code
Blame
19 lines (16 loc) · 448 Bytes
Raw
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_C6X_FLAT_H #define __ASM_C6X_FLAT_H #include <asm/unaligned.h> static inline int flat_get_addr_from_rp(u32 __user *rp, u32 relval, u32 flags, u32 *addr, u32 *persistent) { *addr = get_unaligned((__force u32 *)rp); return 0; } static inline int flat_put_addr_at_rp(u32 __user *rp, u32 addr, u32 rel) { put_unaligned(addr, (__force u32 *)rp); return 0; } #endif /* __ASM_C6X_FLAT_H */
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
You can’t perform that action at this time.