[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1452023119-25647-144-git-send-email-kamal@canonical.com>
Date: Tue, 5 Jan 2016 11:44:11 -0800
From: Kamal Mostafa <kamal@...onical.com>
To: linux-kernel@...r.kernel.org, stable@...r.kernel.org,
kernel-team@...ts.ubuntu.com
Cc: Michal Sojka <sojkam1@....cvut.cz>, Michal Marek <mmarek@...e.cz>,
Kamal Mostafa <kamal@...onical.com>
Subject: [PATCH 4.2.y-ckt 143/211] kconfig: Fix copy&paste error
4.2.8-ckt1 -stable review patch. If anyone has any objections, please let me know.
------------------
From: Michal Sojka <sojkam1@....cvut.cz>
commit f6aad2615c8c4ed806e70693adacb6c93f13564a upstream.
Fixes: 31847b67bec0 ("kconfig: allow use of relations other than (in)equality")
Signed-off-by: Michal Sojka <sojkam1@....cvut.cz>
Reviewed-by: Jan Beulich <jbeulich@...e.com>
Signed-off-by: Michal Marek <mmarek@...e.cz>
Signed-off-by: Kamal Mostafa <kamal@...onical.com>
---
scripts/kconfig/expr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/kconfig/expr.c b/scripts/kconfig/expr.c
index 667d1aa..cbf4996 100644
--- a/scripts/kconfig/expr.c
+++ b/scripts/kconfig/expr.c
@@ -1113,7 +1113,7 @@ void expr_print(struct expr *e, void (*fn)(void *, struct symbol *, const char *
fn(data, e->left.sym, e->left.sym->name);
else
fn(data, NULL, "<choice>");
- fn(data, NULL, e->type == E_LEQ ? ">=" : ">");
+ fn(data, NULL, e->type == E_GEQ ? ">=" : ">");
fn(data, e->right.sym, e->right.sym->name);
break;
case E_UNEQUAL:
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists