Message ID | 20220624131257.29906-6-liang.yang@amlogic.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | fix the meson NFC clock | expand |
Hi, On 24/06/2022 15:12, Liang Yang wrote: > meson NFC driver use common clock interfaces. so the test robot report > some errors once using the legacy clock with HAVE_LEGACY_CLK on. > > Reported-by: kernel test robot <lkp@intel.com> > Signed-off-by: Liang Yang <liang.yang@amlogic.com> > --- > drivers/mtd/nand/raw/Kconfig | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/mtd/nand/raw/Kconfig b/drivers/mtd/nand/raw/Kconfig > index 67b7cb67c030..0ff86ca5932d 100644 > --- a/drivers/mtd/nand/raw/Kconfig > +++ b/drivers/mtd/nand/raw/Kconfig > @@ -395,7 +395,7 @@ config MTD_NAND_STM32_FMC2 > > config MTD_NAND_MESON > tristate "Support for NAND controller on Amlogic's Meson SoCs" > - depends on ARCH_MESON || COMPILE_TEST > + depends on ARCH_MESON || COMPILE_TEST || COMMON_CLK This should be : depends on COMMON_CLK && (ARCH_MESON || COMPILE_TEST) > select MFD_SYSCON > help > Enables support for NAND controller on Amlogic's Meson SoCs. Neil
Hi Neil, On 2022/6/24 21:27, Neil Armstrong wrote: > [ EXTERNAL EMAIL ] > > Hi, > > On 24/06/2022 15:12, Liang Yang wrote: >> meson NFC driver use common clock interfaces. so the test robot report >> some errors once using the legacy clock with HAVE_LEGACY_CLK on. >> >> Reported-by: kernel test robot <lkp@intel.com> >> Signed-off-by: Liang Yang <liang.yang@amlogic.com> >> --- >> drivers/mtd/nand/raw/Kconfig | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/drivers/mtd/nand/raw/Kconfig b/drivers/mtd/nand/raw/Kconfig >> index 67b7cb67c030..0ff86ca5932d 100644 >> --- a/drivers/mtd/nand/raw/Kconfig >> +++ b/drivers/mtd/nand/raw/Kconfig >> @@ -395,7 +395,7 @@ config MTD_NAND_STM32_FMC2 >> config MTD_NAND_MESON >> tristate "Support for NAND controller on Amlogic's Meson SoCs" >> - depends on ARCH_MESON || COMPILE_TEST >> + depends on ARCH_MESON || COMPILE_TEST || COMMON_CLK > > This should be : > depends on COMMON_CLK && (ARCH_MESON || COMPILE_TEST) ok, i will fix it. thanks. > >> select MFD_SYSCON >> help >> Enables support for NAND controller on Amlogic's Meson SoCs. > > Neil > > .
diff --git a/drivers/mtd/nand/raw/Kconfig b/drivers/mtd/nand/raw/Kconfig index 67b7cb67c030..0ff86ca5932d 100644 --- a/drivers/mtd/nand/raw/Kconfig +++ b/drivers/mtd/nand/raw/Kconfig @@ -395,7 +395,7 @@ config MTD_NAND_STM32_FMC2 config MTD_NAND_MESON tristate "Support for NAND controller on Amlogic's Meson SoCs" - depends on ARCH_MESON || COMPILE_TEST + depends on ARCH_MESON || COMPILE_TEST || COMMON_CLK select MFD_SYSCON help Enables support for NAND controller on Amlogic's Meson SoCs.
meson NFC driver use common clock interfaces. so the test robot report some errors once using the legacy clock with HAVE_LEGACY_CLK on. Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Liang Yang <liang.yang@amlogic.com> --- drivers/mtd/nand/raw/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)