Re: [PATCH] irqchip: ingenic: Drop dependency on MACH_INGENIC, use COMPILE_TEST

2019-05-11 Thread Paul Cercueil
My bad, I'm stupid. I tested CONFIG_COMPILE_TEST on MIPS... The driver does depend on arch-specific includes so COMPILE_TEST cannot be used; I'll send a V2. -Paul Le sam. 11 mai 2019 à 19:09, Paul Cercueil a écrit : Depending on MACH_INGENIC prevent us from creating a generic kernel that wo

[PATCH] irqchip: ingenic: Drop dependency on MACH_INGENIC, use COMPILE_TEST

2019-05-11 Thread Paul Cercueil
Depending on MACH_INGENIC prevent us from creating a generic kernel that works on more than one MIPS board. Instead, we just depend on MIPS being set. On other architectures, this driver can still be built, thanks to COMPILE_TEST. This is used by automated tools to find bugs, for instance. Signed