Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
xenomai
ipipe
Commits
08aea424
Commit
08aea424
authored
May 06, 2015
by
Don Mahurin
Committed by
Philippe Gerum
Feb 28, 2016
Browse files
arm64/ipipe: change ffs to ffsl so function works for 64 bit long
parent
3e108e48
Changes
1
Show whitespace changes
Inline
Side-by-side
arch/arm64/include/asm/ipipe.h
View file @
08aea424
...
@@ -231,7 +231,7 @@ static inline void ipipe_handle_multi_irq(int irq, struct pt_regs *regs)
...
@@ -231,7 +231,7 @@ static inline void ipipe_handle_multi_irq(int irq, struct pt_regs *regs)
static
inline
unsigned
long
__ipipe_ffnz
(
unsigned
long
ul
)
static
inline
unsigned
long
__ipipe_ffnz
(
unsigned
long
ul
)
{
{
return
ffs
(
ul
)
-
1
;
return
__builtin_
ffs
l
(
ul
)
-
1
;
}
}
#define __ipipe_syscall_watched_p(p, sc) \
#define __ipipe_syscall_watched_p(p, sc) \
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment