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
5c217b60
Commit
5c217b60
authored
Feb 04, 2011
by
Thomas Gleixner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ia64: Convert lsapic to new irq_chip functions
Signed-off-by:
Thomas Gleixner
<
tglx@linutronix.de
>
parent
f1f701e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
arch/ia64/kernel/irq_lsapic.c
arch/ia64/kernel/irq_lsapic.c
+11
-11
No files found.
arch/ia64/kernel/irq_lsapic.c
View file @
5c217b60
...
@@ -15,30 +15,30 @@
...
@@ -15,30 +15,30 @@
#include <linux/irq.h>
#include <linux/irq.h>
static
unsigned
int
static
unsigned
int
lsapic_noop_startup
(
unsigned
int
irq
)
lsapic_noop_startup
(
struct
irq_data
*
data
)
{
{
return
0
;
return
0
;
}
}
static
void
static
void
lsapic_noop
(
unsigned
int
irq
)
lsapic_noop
(
struct
irq_data
*
data
)
{
{
/* nothing to do... */
/* nothing to do... */
}
}
static
int
lsapic_retrigger
(
unsigned
int
irq
)
static
int
lsapic_retrigger
(
struct
irq_data
*
data
)
{
{
ia64_resend_irq
(
irq
);
ia64_resend_irq
(
data
->
irq
);
return
1
;
return
1
;
}
}
struct
irq_chip
irq_type_ia64_lsapic
=
{
struct
irq_chip
irq_type_ia64_lsapic
=
{
.
name
=
"LSAPIC"
,
.
name
=
"LSAPIC"
,
.
startup
=
lsapic_noop_startup
,
.
irq_startup
=
lsapic_noop_startup
,
.
shutdown
=
lsapic_noop
,
.
irq_shutdown
=
lsapic_noop
,
.
enable
=
lsapic_noop
,
.
irq_enable
=
lsapic_noop
,
.
disable
=
lsapic_noop
,
.
irq_disable
=
lsapic_noop
,
.
ack
=
lsapic_noop
,
.
irq_
ack
=
lsapic_noop
,
.
retrigger
=
lsapic_retrigger
,
.
irq_
retrigger
=
lsapic_retrigger
,
};
};
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