arch/tile: fix reversed test of strict_strtol() return value
authorChris Metcalf <cmetcalf@tilera.com>
Mon, 28 Feb 2011 20:14:19 +0000 (15:14 -0500)
committerChris Metcalf <cmetcalf@tilera.com>
Tue, 1 Mar 2011 21:20:36 +0000 (16:20 -0500)
This fixes the "initfree" boot argument.

Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
arch/tile/mm/init.c

index 9a62479..2ef9ce5 100644 (file)
@@ -1000,7 +1000,7 @@ static long __write_once initfree = 1;
 static int __init set_initfree(char *str)
 {
        long val;
-       if (strict_strtol(str, 0, &val)) {
+       if (strict_strtol(str, 0, &val) == 0) {
                initfree = val;
                pr_info("initfree: %s free init pages\n",
                        initfree ? "will" : "won't");