Skip to content

Commit

Permalink
[IA64] Fix wrong return value in parse_vector_domain
Browse files Browse the repository at this point in the history
Fix wrong return value in parse_vector_domain().

Signed-off-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
  • Loading branch information
Kenji Kaneshige authored and Tony Luck committed Jul 26, 2007
1 parent 3c3738c commit 074ff85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/ia64/kernel/irq_ia64.c
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ static int __init parse_vector_domain(char *arg)
vector_domain_type = VECTOR_DOMAIN_PERCPU;
no_int_routing = 1;
}
return 1;
return 0;
}
early_param("vector", parse_vector_domain);
#else
Expand Down

0 comments on commit 074ff85

Please sign in to comment.