REGMAP is a hidden (not user visible) symbol. Users cannot set it directly thru "make *config", so drivers should select it instead of depending on it if they need it.
Consistently using "select" or "depends on" can also help reduce Kconfig circular dependency issues. REGMAP is selected 94 times and is depended on 11 times in current linux-next. Eliminate the uses of "depends on" by converting them to "select". [PATCH 1/8] ipmi: ASPEED_BT_IPMI_BMC: select REGMAP_MMIO instead of depending on it [PATCH 2/8] clk: HI655X: select REGMAP instead of depending on it [PATCH 3/8] gpio: GPIO_REGMAP: select REGMAP instead of depending on it [PATCH 4/8] leds: TI_LMU_COMMON: select REGMAP instead of depending on it [PATCH 5/8] platform: mellanox: select REGMAP instead of depending on it [PATCH 6/8] platform: x86: MLX_PLATFORM: select REGMAP instead of depending on it [PATCH 7/8] thermal: intel: BXT_PMIC: select REGMAP instead of depending on it [PATCH 8/8] serial: 8250: ASPEED_VUART: select REGMAP instead of depending on it diffstat: drivers/char/ipmi/Kconfig | 3 ++- drivers/clk/Kconfig | 2 +- drivers/gpio/Kconfig | 2 +- drivers/leds/Kconfig | 2 +- drivers/platform/mellanox/Kconfig | 9 ++++----- drivers/platform/x86/Kconfig | 3 ++- drivers/thermal/intel/Kconfig | 3 ++- drivers/tty/serial/8250/Kconfig | 3 ++- 8 files changed, 15 insertions(+), 12 deletions(-) Cc: Andrew Jeffery <[email protected]> Cc: Corey Minyard <[email protected]> Cc: [email protected] Cc: Arnd Bergmann <[email protected]> Cc: Greg Kroah-Hartman <[email protected]> Cc: Riku Voipio <[email protected]> Cc: Stephen Boyd <[email protected]> Cc: Michael Turquette <[email protected]> Cc: [email protected] Cc: Michael Walle <[email protected]> Cc: Linus Walleij <[email protected]> Cc: Bartosz Golaszewski <[email protected]> Cc: [email protected] Cc: Dan Murphy <[email protected]> Cc: Pavel Machek <[email protected]> Cc: Jacek Anaszewski <[email protected]> Cc: Lee Jones <[email protected]> Cc: [email protected] Cc: Darren Hart <[email protected]> Cc: Hans de Goede <[email protected]> Cc: Michael Shych <[email protected]> Cc: Mark Gross <[email protected]> Cc: Vadim Pasternak <[email protected]> Cc: [email protected] Cc: Yegnesh S Iyer <[email protected]> Cc: Bin Gao <[email protected]> Cc: Zhang Rui <[email protected]> Cc: "Rafael J. Wysocki" <[email protected]> Cc: Daniel Lezcano <[email protected]> Cc: Amit Kucheria <[email protected]> Cc: [email protected] Cc: Oskar Senft <[email protected]> Cc: [email protected] _______________________________________________ Openipmi-developer mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openipmi-developer
