We see an increasing number of non-modular drivers using the modular_driver() type register functions. There are several downsides to this (as listed in the 1st commit log), so here we introduce similar non-modular macros for builtin drivers. Then we convert builtin drivers (controlled by a bool Kconfig) by making the following type of changes: module_platform_driver() ---> builtin_platform_driver() module_platform_driver_probe() ---> builtin_platform_driver_probe(). The set of drivers that are converted here are just the ones that showed up as relying on an implicit include of <module.h> during a pending header cleanup. So we convert them here vs. adding an include of <module.h> to non-modular code to avoid compile fails. Additonal conversions can be done asynchronously at any time. These changes, and the pending header cleanup are a refactoring of a larger series[1] into smaller, more easily reviewed chunks that share a common theme. Note to maintainers: None of the conversion patches here can be taken into subtrees individually, since they all rely on the 1st patch to add the builtin macros. But I'll add Acks as requested. Thanks, Paul. [1] https://marc.info/?l=linux-kernel&m=139033951228828 --- Cc: Alexandre Courbot <gnurou@xxxxxxxxx> Cc: Arnd Bergmann <arnd@xxxxxxxx> Cc: Axel Lin <axel.lin@xxxxxxxxxx> Cc: Daniel Lezcano <daniel.lezcano@xxxxxxxxxx> Cc: David Woodhouse <dwmw2@xxxxxxxxxxxxx> Cc: Dmitry Eremin-Solenikov <dbaryshkov@xxxxxxxxx> Cc: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> Cc: Kukjin Kim <kgene@xxxxxxxxxx> Cc: Linus Walleij <linus.walleij@xxxxxxxxxx> Cc: Michal Simek <michal.simek@xxxxxxxxxx> Cc: "Rafael J. Wysocki" <rjw@xxxxxxxxxxxxx> Cc: Sebastian Reichel <sre@xxxxxxxxxx> Cc: Stephen Warren <swarren@xxxxxxxxxxxxx> Cc: Thierry Reding <thierry.reding@xxxxxxxxx> Cc: Viresh Kumar <viresh.kumar@xxxxxxxxxx> Cc: linux-arm-kernel@xxxxxxxxxxxxxxxxxxx Cc: linux-pm@xxxxxxxxxxxxxxx Cc: linux-tegra@xxxxxxxxxxxxxxx -- To unsubscribe from this list: send the line "unsubscribe linux-tegra" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html