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
d971b2bf
Commit
d971b2bf
authored
Jul 16, 2004
by
David Mosberger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ia64: Nuke two compiler-warnings.
parent
511c4a5d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
arch/ia64/hp/sim/hpsim_irq.c
arch/ia64/hp/sim/hpsim_irq.c
+6
-1
arch/ia64/kernel/mca.c
arch/ia64/kernel/mca.c
+2
-2
No files found.
arch/ia64/hp/sim/hpsim_irq.c
View file @
d971b2bf
...
...
@@ -21,6 +21,11 @@ hpsim_irq_noop (unsigned int irq)
{
}
static
void
hpsim_set_affinity_noop
(
unsigned
int
a
,
cpumask_t
b
)
{
}
static
struct
hw_interrupt_type
irq_type_hp_sim
=
{
.
typename
=
"hpsim"
,
.
startup
=
hpsim_irq_startup
,
...
...
@@ -29,7 +34,7 @@ static struct hw_interrupt_type irq_type_hp_sim = {
.
disable
=
hpsim_irq_noop
,
.
ack
=
hpsim_irq_noop
,
.
end
=
hpsim_irq_noop
,
.
set_affinity
=
(
void
(
*
)(
unsigned
int
,
unsigned
long
))
hpsim_irq
_noop
,
.
set_affinity
=
hpsim_set_affinity
_noop
,
};
void
__init
...
...
arch/ia64/kernel/mca.c
View file @
d971b2bf
...
...
@@ -128,8 +128,6 @@ static int cmc_polling_enabled = 1;
*/
static
int
cpe_poll_enabled
=
1
;
static
int
cpe_vector
=
-
1
;
extern
void
salinfo_log_wakeup
(
int
type
,
u8
*
buffer
,
u64
size
,
int
irqsafe
);
/*
...
...
@@ -274,6 +272,8 @@ ia64_mca_log_sal_error_record(int sal_info_type)
#ifdef CONFIG_ACPI
static
int
cpe_vector
=
-
1
;
static
irqreturn_t
ia64_mca_cpe_int_handler
(
int
cpe_irq
,
void
*
arg
,
struct
pt_regs
*
ptregs
)
{
...
...
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