]> Git Repo - linux.git/commitdiff
[IA64] Fix wrong return value in parse_vector_domain
authorKenji Kaneshige <[email protected]>
Thu, 26 Jul 2007 06:32:38 +0000 (15:32 +0900)
committerTony Luck <[email protected]>
Thu, 26 Jul 2007 21:28:02 +0000 (14:28 -0700)
Fix wrong return value in parse_vector_domain().

Signed-off-by: Kenji Kaneshige <[email protected]>
Signed-off-by: Tony Luck <[email protected]>
arch/ia64/kernel/irq_ia64.c

index 8c2bd81acb261be5331bdd2d998605a54ef6400c..9386b955eed1652ea1694919272a937c5a3714d7 100644 (file)
@@ -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
This page took 0.053477 seconds and 4 git commands to generate.