Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
20f95e0b
Commit
20f95e0b
authored
Nov 01, 2010
by
Paul Mundt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sh: intc: Update for single IRQ reservation helper.
Signed-off-by:
Paul Mundt
<
lethal@linux-sh.org
>
parent
c8ddb271
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
drivers/sh/intc/core.c
drivers/sh/intc/core.c
+1
-1
drivers/sh/intc/dynamic.c
drivers/sh/intc/dynamic.c
+1
-1
No files found.
drivers/sh/intc/core.c
View file @
20f95e0b
...
...
@@ -79,7 +79,7 @@ static void __init intc_register_irq(struct intc_desc *desc,
* Register the IRQ position with the global IRQ map, then insert
* it in to the radix tree.
*/
irq_reserve_irq
s
(
irq
,
1
);
irq_reserve_irq
(
irq
);
raw_spin_lock_irqsave
(
&
intc_big_lock
,
flags
);
radix_tree_insert
(
&
d
->
tree
,
enum_id
,
intc_irq_xlate_get
(
irq
));
...
...
drivers/sh/intc/dynamic.c
View file @
20f95e0b
...
...
@@ -60,5 +60,5 @@ void reserve_intc_vectors(struct intc_vect *vectors, unsigned int nr_vecs)
int
i
;
for
(
i
=
0
;
i
<
nr_vecs
;
i
++
)
irq_reserve_irq
s
(
evt2irq
(
vectors
[
i
].
vect
),
1
);
irq_reserve_irq
(
evt2irq
(
vectors
[
i
].
vect
)
);
}
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