Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
0c2de3c6
Commit
0c2de3c6
authored
Dec 30, 2006
by
Kyle McMartin
Committed by
Kyle McMartin
Feb 17, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PARISC] use fls_long in irq.c
Signed-off-by:
Kyle McMartin
<
kyle@parisc-linux.org
>
parent
c4ba7a2e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
arch/parisc/kernel/irq.c
arch/parisc/kernel/irq.c
+1
-5
No files found.
arch/parisc/kernel/irq.c
View file @
0c2de3c6
...
...
@@ -336,11 +336,7 @@ unsigned int txn_alloc_data(unsigned int virt_irq)
static
inline
int
eirr_to_irq
(
unsigned
long
eirr
)
{
#ifdef CONFIG_64BIT
int
bit
=
fls64
(
eirr
);
#else
int
bit
=
fls
(
eirr
);
#endif
int
bit
=
fls_long
(
eirr
);
return
(
BITS_PER_LONG
-
bit
)
+
TIMER_IRQ
;
}
...
...
Write
Preview
Markdown
is supported
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