Re: [PATCH] kconfig: fix relational operators for bool and tristate symbols

2018-01-05 Thread Masahiro Yamada
2017-11-17 10:06 GMT+09:00 Nicolas Pitre : > Since commit 31847b67bec0 ("kconfig: allow use of relations other than > (in)equality") it is possible to use relational operators in Kconfig > statements. However, those operators give unexpected results when > applied to bool/tristate values: > >

Re: [PATCH] kconfig: fix relational operators for bool and tristate symbols

2017-12-09 Thread Masahiro Yamada
2017-12-07 0:40 GMT+09:00 Nicolas Pitre : > > Ping. > I see several kconfig patches queued up. Patches from Ulf Magnusson have been waiting for longer, so I will check them first, and I will come back to this as soon as possible. -- Best Regards Masahiro Yamada

Re: [PATCH] kconfig: fix relational operators for bool and tristate symbols

2017-12-06 Thread Randy Dunlap
On 12/06/2017 07:40 AM, Nicolas Pitre wrote: > > Ping. > > On Thu, 16 Nov 2017, Nicolas Pitre wrote: > >> Since commit 31847b67bec0 ("kconfig: allow use of relations other than >> (in)equality") it is possible to use relational operators in Kconfig >> statements. However, those operators give un

Re: [PATCH] kconfig: fix relational operators for bool and tristate symbols

2017-12-06 Thread Nicolas Pitre
Ping. On Thu, 16 Nov 2017, Nicolas Pitre wrote: > Since commit 31847b67bec0 ("kconfig: allow use of relations other than > (in)equality") it is possible to use relational operators in Kconfig > statements. However, those operators give unexpected results when > applied to bool/tristate values: >

[PATCH] kconfig: fix relational operators for bool and tristate symbols

2017-11-16 Thread Nicolas Pitre
Since commit 31847b67bec0 ("kconfig: allow use of relations other than (in)equality") it is possible to use relational operators in Kconfig statements. However, those operators give unexpected results when applied to bool/tristate values: (n < y) = y (correct) (m < y) = y (correct)