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
35d75b0e
Commit
35d75b0e
authored
Feb 04, 2011
by
Thomas Gleixner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ia64: Convert hp-sim to new irq_chip functions
Signed-off-by:
Thomas Gleixner
<
tglx@linutronix.de
>
parent
3d373ce8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
arch/ia64/hp/sim/hpsim_irq.c
arch/ia64/hp/sim/hpsim_irq.c
+10
-10
No files found.
arch/ia64/hp/sim/hpsim_irq.c
View file @
35d75b0e
...
...
@@ -11,30 +11,30 @@
#include <linux/irq.h>
static
unsigned
int
hpsim_irq_startup
(
unsigned
int
irq
)
hpsim_irq_startup
(
struct
irq_data
*
data
)
{
return
0
;
}
static
void
hpsim_irq_noop
(
unsigned
int
irq
)
hpsim_irq_noop
(
struct
irq_data
*
data
)
{
}
static
int
hpsim_set_affinity_noop
(
unsigned
int
a
,
const
struct
cpumask
*
b
)
hpsim_set_affinity_noop
(
struct
irq_data
*
d
,
const
struct
cpumask
*
b
,
bool
f
)
{
return
0
;
}
static
struct
irq_chip
irq_type_hp_sim
=
{
.
name
=
"hpsim"
,
.
startup
=
hpsim_irq_startup
,
.
shutdown
=
hpsim_irq_noop
,
.
enable
=
hpsim_irq_noop
,
.
disable
=
hpsim_irq_noop
,
.
ack
=
hpsim_irq_noop
,
.
set_affinity
=
hpsim_set_affinity_noop
,
.
name
=
"hpsim"
,
.
irq_startup
=
hpsim_irq_startup
,
.
irq_shutdown
=
hpsim_irq_noop
,
.
irq_enable
=
hpsim_irq_noop
,
.
irq_disable
=
hpsim_irq_noop
,
.
irq_
ack
=
hpsim_irq_noop
,
.
irq_
set_affinity
=
hpsim_set_affinity_noop
,
};
void
__init
...
...
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