* [PATCH 0/3] platform/chrome: mfd: Move cros-ec transport drivers to drivers/platform
@ 2018-07-02 10:21 Enric Balletbo i Serra
2018-07-02 10:22 ` [PATCH 3/3] Input: keyboard: Fix ChromeOS EC keyboard help message Enric Balletbo i Serra
2018-07-02 23:13 ` [PATCH 0/3] platform/chrome: mfd: Move cros-ec transport drivers to drivers/platform Benson Leung
0 siblings, 2 replies; 4+ messages in thread
From: Enric Balletbo i Serra @ 2018-07-02 10:21 UTC (permalink / raw)
To: Russell King, Kukjin Kim, Krzysztof Kozlowski, Catalin Marinas,
Will Deacon, Lee Jones, Benson Leung, Olof Johansson
Cc: Gwendal Grignou, Geert Uytterhoeven, Tony Lindgren, Stefan Agner,
Bjorn Andersson, Miquel Raynal, kernel, Shuah Khan,
Marek Szyprowski, linux-samsung-soc, Guenter Roeck,
Gregory CLEMENT, Wei Xu, Marc Zyngier, linux-input, Andy Gross,
Arnd Bergmann, Martin Blumenstingl, Boris Brezillon, Simon Horman,
linux-arm-kernel, Ard Biesheuvel, Anand Moon
Hi,
The cros-ec transport drivers are placed in two subsystems, in MFD and
in platform/chrome. As far as I know there is no reason for this, so,
move the I2C and the SPI cros-ec transport driver from the MFD subsystem
to the platform/chrome. The series also removes the MFD_ prefix for the
Kconfig symbols, modifies the defconfigs that used these symbols and
fixes the KEYBOARD_CROS_EC Kconfig help.
Best regards,
Enric
Enric Balletbo i Serra (3):
platform/chrome: Move cros-ec transport drivers to drivers/platform.
arm/arm64: configs: Remove the MFD_ prefix for MFD_CROS_EC_I2C/SPI
symbols.
Input: keyboard: Fix ChromeOS EC keyboard help message.
arch/arm/configs/exynos_defconfig | 4 ++--
arch/arm/configs/multi_v7_defconfig | 4 ++--
arch/arm/configs/pxa_defconfig | 4 ++--
arch/arm64/configs/defconfig | 4 ++--
drivers/input/keyboard/Kconfig | 2 +-
drivers/mfd/Kconfig | 20 -------------------
drivers/mfd/Makefile | 2 --
drivers/platform/chrome/Kconfig | 20 +++++++++++++++++++
drivers/platform/chrome/Makefile | 2 ++
.../{mfd => platform/chrome}/cros_ec_i2c.c | 0
.../{mfd => platform/chrome}/cros_ec_spi.c | 0
11 files changed, 31 insertions(+), 31 deletions(-)
rename drivers/{mfd => platform/chrome}/cros_ec_i2c.c (100%)
rename drivers/{mfd => platform/chrome}/cros_ec_spi.c (100%)
--
2.18.0
^ permalink raw reply [flat|nested] 4+ messages in thread* [PATCH 3/3] Input: keyboard: Fix ChromeOS EC keyboard help message.
2018-07-02 10:21 [PATCH 0/3] platform/chrome: mfd: Move cros-ec transport drivers to drivers/platform Enric Balletbo i Serra
@ 2018-07-02 10:22 ` Enric Balletbo i Serra
2018-07-02 14:43 ` Guenter Roeck
2018-07-02 23:13 ` [PATCH 0/3] platform/chrome: mfd: Move cros-ec transport drivers to drivers/platform Benson Leung
1 sibling, 1 reply; 4+ messages in thread
From: Enric Balletbo i Serra @ 2018-07-02 10:22 UTC (permalink / raw)
To: Russell King, Kukjin Kim, Krzysztof Kozlowski, Catalin Marinas,
Will Deacon, Lee Jones, Benson Leung, Olof Johansson
Cc: Gwendal Grignou, linux-samsung-soc, linux-kernel, Dmitry Torokhov,
kernel, Guenter Roeck, linux-arm-kernel, Arnd Bergmann,
Chen Zhong, linux-input
The cros-ec I2C and SPI transport drivers have been moved from MFD
subsystem to platform/chrome, at the same time, the config symbol
has been renamed and lost the MFD_ prefix So, update the help message
accordingly.
Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com>
---
drivers/input/keyboard/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/input/keyboard/Kconfig b/drivers/input/keyboard/Kconfig
index 6bd97ffee761..4713957b0cbb 100644
--- a/drivers/input/keyboard/Kconfig
+++ b/drivers/input/keyboard/Kconfig
@@ -721,7 +721,7 @@ config KEYBOARD_CROS_EC
help
Say Y here to enable the matrix keyboard used by ChromeOS devices
and implemented on the ChromeOS EC. You must enable one bus option
- (MFD_CROS_EC_I2C or MFD_CROS_EC_SPI) to use this.
+ (CROS_EC_I2C or CROS_EC_SPI) to use this.
To compile this driver as a module, choose M here: the
module will be called cros_ec_keyb.
--
2.18.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 3/3] Input: keyboard: Fix ChromeOS EC keyboard help message.
2018-07-02 10:22 ` [PATCH 3/3] Input: keyboard: Fix ChromeOS EC keyboard help message Enric Balletbo i Serra
@ 2018-07-02 14:43 ` Guenter Roeck
0 siblings, 0 replies; 4+ messages in thread
From: Guenter Roeck @ 2018-07-02 14:43 UTC (permalink / raw)
To: Enric Balletbo i Serra
Cc: Russell King - ARM Linux, kgene, krzk, Catalin Marinas,
Will Deacon, Lee Jones, Benson Leung, Olof Johansson,
Gwendal Grignou, linux-samsung-soc, linux-kernel, Dmitry Torokhov,
kernel, linux-arm-kernel, Arnd Bergmann, chen.zhong, linux-input
On Mon, Jul 2, 2018 at 3:22 AM Enric Balletbo i Serra
<enric.balletbo@collabora.com> wrote:
>
> The cros-ec I2C and SPI transport drivers have been moved from MFD
> subsystem to platform/chrome, at the same time, the config symbol
> has been renamed and lost the MFD_ prefix So, update the help message
> accordingly.
>
> Signed-off-by: Enric Balletbo i Serra <enric.balletbo@collabora.com>
Reviewed-by: Guenter Roeck <groeck@chromium.org>
> ---
>
> drivers/input/keyboard/Kconfig | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/input/keyboard/Kconfig b/drivers/input/keyboard/Kconfig
> index 6bd97ffee761..4713957b0cbb 100644
> --- a/drivers/input/keyboard/Kconfig
> +++ b/drivers/input/keyboard/Kconfig
> @@ -721,7 +721,7 @@ config KEYBOARD_CROS_EC
> help
> Say Y here to enable the matrix keyboard used by ChromeOS devices
> and implemented on the ChromeOS EC. You must enable one bus option
> - (MFD_CROS_EC_I2C or MFD_CROS_EC_SPI) to use this.
> + (CROS_EC_I2C or CROS_EC_SPI) to use this.
>
> To compile this driver as a module, choose M here: the
> module will be called cros_ec_keyb.
> --
> 2.18.0
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 0/3] platform/chrome: mfd: Move cros-ec transport drivers to drivers/platform
2018-07-02 10:21 [PATCH 0/3] platform/chrome: mfd: Move cros-ec transport drivers to drivers/platform Enric Balletbo i Serra
2018-07-02 10:22 ` [PATCH 3/3] Input: keyboard: Fix ChromeOS EC keyboard help message Enric Balletbo i Serra
@ 2018-07-02 23:13 ` Benson Leung
1 sibling, 0 replies; 4+ messages in thread
From: Benson Leung @ 2018-07-02 23:13 UTC (permalink / raw)
To: Enric Balletbo i Serra
Cc: Russell King, Kukjin Kim, Krzysztof Kozlowski, Catalin Marinas,
Will Deacon, Lee Jones, Benson Leung, Olof Johansson,
Gwendal Grignou, linux-samsung-soc, linux-kernel, Dmitry Torokhov,
kernel, Guenter Roeck, linux-arm-kernel, Bjorn Andersson,
Arnd Bergmann, Gregory CLEMENT, Ard Biesheuvel,
Geert Uytterhoeven, Miqu
[-- Attachment #1: Type: text/plain, Size: 788 bytes --]
Hi Enric,
On Mon, Jul 02, 2018 at 12:21:58PM +0200, Enric Balletbo i Serra wrote:
> Hi,
>
> The cros-ec transport drivers are placed in two subsystems, in MFD and
> in platform/chrome. As far as I know there is no reason for this, so,
> move the I2C and the SPI cros-ec transport driver from the MFD subsystem
> to the platform/chrome. The series also removes the MFD_ prefix for the
> Kconfig symbols, modifies the defconfigs that used these symbols and
> fixes the KEYBOARD_CROS_EC Kconfig help.
>
Thanks for putting this together.
I can create an IB with this for the others to pull. What do you all think?
Thanks,
Benson
--
Benson Leung
Staff Software Engineer
Chrome OS Kernel
Google Inc.
bleung@google.com
Chromium OS Project
bleung@chromium.org
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-07-02 23:13 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-02 10:21 [PATCH 0/3] platform/chrome: mfd: Move cros-ec transport drivers to drivers/platform Enric Balletbo i Serra
2018-07-02 10:22 ` [PATCH 3/3] Input: keyboard: Fix ChromeOS EC keyboard help message Enric Balletbo i Serra
2018-07-02 14:43 ` Guenter Roeck
2018-07-02 23:13 ` [PATCH 0/3] platform/chrome: mfd: Move cros-ec transport drivers to drivers/platform Benson Leung
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox