On Sun, Jul 26, 2020 at 6:20 PM Paul Cercueil <p...@crapouillou.net> wrote: > Le dim. 26 juil. 2020 à 18:15, Krzysztof Kozlowski <k...@kernel.org> a écrit : > > On Sun, Jul 26, 2020 at 06:12:27PM +0200, Paul Cercueil wrote: > >> Le dim. 26 juil. 2020 à 18:06, Krzysztof Kozlowski <k...@kernel.org> a > >> écrit > > > OK, that's true. Anyway, I don't have strong opinion on any of this. I > > just followed Arnd's hint. > > > > For the memory driver (and MTD NAND as well) which one you prefer: > > 1. https://lore.kernel.org/lkml/20200724074038.5597-6-k...@kernel.org/ > > 2. depends on MACH_INGENIC || MIPS_GENERIC || COMPILE_TEST > > > > ? > > I'd say a slightly modified #1. The driver shouldn't be "default y" in > the first place, so the patch could be to disable it by default.
If it defaults to 'n' even for MACH_INGENIC, you may have to enable it in the four defconfig files for these machines to avoid surprises. > And when the Ingenic code is merged into the MIPS generic framework, I'll > send a set of patches to change all driver dependencies on MIPS to > MIPS_GENERIC. The way we do it on Arm, the machine Kconfig identifiers stay around even for multiplatform targets (which now make up basically actively maintained machines). I don't think it makes any sense for a driver to depend on MIPS_GENERIC: either it is a generic driver that should always be visible or it is specific to a set of SoCs and should depend on some corresponding vendor specific identifiers. Arnd