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
nexedi
linux
Commits
35e857cb
Commit
35e857cb
authored
Feb 10, 2011
by
Thomas Gleixner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
genirq: Fixup core code namespace fallout
Signed-off-by:
Thomas Gleixner
<
tglx@linutronix.de
>
parent
c78b9b65
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
kernel/irq/chip.c
kernel/irq/chip.c
+3
-3
kernel/irq/manage.c
kernel/irq/manage.c
+1
-1
No files found.
kernel/irq/chip.c
View file @
35e857cb
...
...
@@ -618,7 +618,7 @@ handle_edge_irq(unsigned int irq, struct irq_desc *desc)
void
handle_percpu_irq
(
unsigned
int
irq
,
struct
irq_desc
*
desc
)
{
struct
irq_chip
*
chip
=
get_irq_desc
_chip
(
desc
);
struct
irq_chip
*
chip
=
irq_desc_get
_chip
(
desc
);
kstat_incr_irqs_this_cpu
(
irq
,
desc
);
...
...
@@ -685,7 +685,7 @@ void
set_irq_chip_and_handler
(
unsigned
int
irq
,
struct
irq_chip
*
chip
,
irq_flow_handler_t
handle
)
{
set_irq
_chip
(
irq
,
chip
);
irq_set
_chip
(
irq
,
chip
);
__set_irq_handler
(
irq
,
handle
,
0
,
NULL
);
}
...
...
@@ -693,7 +693,7 @@ void
set_irq_chip_and_handler_name
(
unsigned
int
irq
,
struct
irq_chip
*
chip
,
irq_flow_handler_t
handle
,
const
char
*
name
)
{
set_irq
_chip
(
irq
,
chip
);
irq_set
_chip
(
irq
,
chip
);
__set_irq_handler
(
irq
,
handle
,
0
,
name
);
}
...
...
kernel/irq/manage.c
View file @
35e857cb
...
...
@@ -260,7 +260,7 @@ EXPORT_SYMBOL_GPL(irq_set_affinity_notifier);
static
int
setup_affinity
(
unsigned
int
irq
,
struct
irq_desc
*
desc
,
struct
cpumask
*
mask
)
{
struct
irq_chip
*
chip
=
get_irq_desc
_chip
(
desc
);
struct
irq_chip
*
chip
=
irq_desc_get
_chip
(
desc
);
struct
cpumask
*
set
=
irq_default_affinity
;
int
ret
;
...
...
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