Re: [PATCH 1/2] kconfig: fix reverse dependency with tristate if-conditional

2018-11-26 Thread Masahiro Yamada
On Mon, Nov 26, 2018 at 5:17 PM kbuild test robot wrote: > > Hi Masahiro, > > I love your patch! Yet something to improve: > > [auto build test ERROR on masahiroy/kconfig] > [also build test ERROR on v4.20-rc4] > [if your patch is applied to the wrong git tree, please drop us a note to > help

Re: [PATCH 1/2] kconfig: fix reverse dependency with tristate if-conditional

2018-11-26 Thread Masahiro Yamada
On Mon, Nov 26, 2018 at 5:17 PM kbuild test robot wrote: > > Hi Masahiro, > > I love your patch! Yet something to improve: > > [auto build test ERROR on masahiroy/kconfig] > [also build test ERROR on v4.20-rc4] > [if your patch is applied to the wrong git tree, please drop us a note to > help

Re: [PATCH 1/2] kconfig: fix reverse dependency with tristate if-conditional

2018-11-26 Thread kbuild test robot
Hi Masahiro, I love your patch! Yet something to improve: [auto build test ERROR on masahiroy/kconfig] [also build test ERROR on v4.20-rc4 next-20181123] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

Re: [PATCH 1/2] kconfig: fix reverse dependency with tristate if-conditional

2018-11-26 Thread kbuild test robot
Hi Masahiro, I love your patch! Yet something to improve: [auto build test ERROR on masahiroy/kconfig] [also build test ERROR on v4.20-rc4 next-20181123] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

Re: [PATCH 1/2] kconfig: fix reverse dependency with tristate if-conditional

2018-11-26 Thread kbuild test robot
Hi Masahiro, I love your patch! Yet something to improve: [auto build test ERROR on masahiroy/kconfig] [also build test ERROR on v4.20-rc4] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

Re: [PATCH 1/2] kconfig: fix reverse dependency with tristate if-conditional

2018-11-26 Thread kbuild test robot
Hi Masahiro, I love your patch! Yet something to improve: [auto build test ERROR on masahiroy/kconfig] [also build test ERROR on v4.20-rc4] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

[PATCH 1/2] kconfig: fix reverse dependency with tristate if-conditional

2018-11-25 Thread Masahiro Yamada
A Kconfig property can have an optional if-expression, which describes its visibility. The property is visible when the if-expression part is evaluated to 'y' or 'm'. The 'select' and 'imply' properties are internally converted to reverse dependencies, but they are wrongly converted if they have

[PATCH 1/2] kconfig: fix reverse dependency with tristate if-conditional

2018-11-25 Thread Masahiro Yamada
A Kconfig property can have an optional if-expression, which describes its visibility. The property is visible when the if-expression part is evaluated to 'y' or 'm'. The 'select' and 'imply' properties are internally converted to reverse dependencies, but they are wrongly converted if they have