LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] i2c: Allow selecting BCM2835 I2C controllers on ARCH_BRCMSTB
@ 2019-05-09 21:04 Florian Fainelli
2019-05-10 8:12 ` Jean Delvare
2019-05-27 19:21 ` Wolfram Sang
0 siblings, 2 replies; 3+ messages in thread
From: Florian Fainelli @ 2019-05-09 21:04 UTC (permalink / raw)
To: linux-arm-kernel
Cc: Kamal Dasu, Florian Fainelli, Wolfram Sang, Jean Delvare,
Jarkko Nikula, Andy Shevchenko, Vignesh R, Eddie James,
Heikki Krogerus, Ajay Gupta, Karthikeyan Ramasubramanian,
Juergen Fitschen, Elie Morisse,
open list:I2C SUBSYSTEM HOST DRIVERS, open list
From: Kamal Dasu <kdasu.kdev@gmail.com>
ARCH_BRCMSTB platforms have the BCM2835 I2C controllers, allow
selecting the i2c-bcm2835 driver on such platforms.
Signed-off-by: Kamal Dasu <kdasu.kdev@gmail.com>
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
---
drivers/i2c/busses/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig
index 26186439db6b..7277c1051ca2 100644
--- a/drivers/i2c/busses/Kconfig
+++ b/drivers/i2c/busses/Kconfig
@@ -435,7 +435,7 @@ config I2C_AXXIA
config I2C_BCM2835
tristate "Broadcom BCM2835 I2C controller"
- depends on ARCH_BCM2835
+ depends on ARCH_BCM2835 || ARCH_BRCMSTB
help
If you say yes to this option, support will be included for the
BCM2835 I2C controller.
--
2.17.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] i2c: Allow selecting BCM2835 I2C controllers on ARCH_BRCMSTB
2019-05-09 21:04 [PATCH] i2c: Allow selecting BCM2835 I2C controllers on ARCH_BRCMSTB Florian Fainelli
@ 2019-05-10 8:12 ` Jean Delvare
2019-05-27 19:21 ` Wolfram Sang
1 sibling, 0 replies; 3+ messages in thread
From: Jean Delvare @ 2019-05-10 8:12 UTC (permalink / raw)
To: Florian Fainelli
Cc: linux-arm-kernel, Kamal Dasu, Wolfram Sang, Jarkko Nikula,
Andy Shevchenko, Vignesh R, Eddie James, Heikki Krogerus,
Ajay Gupta, Karthikeyan Ramasubramanian, Juergen Fitschen,
Elie Morisse, linux-i2c, linux-kernel
On Thu, 9 May 2019 14:04:36 -0700, Florian Fainelli wrote:
> From: Kamal Dasu <kdasu.kdev@gmail.com>
>
> ARCH_BRCMSTB platforms have the BCM2835 I2C controllers, allow
> selecting the i2c-bcm2835 driver on such platforms.
>
> Signed-off-by: Kamal Dasu <kdasu.kdev@gmail.com>
> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
> ---
> drivers/i2c/busses/Kconfig | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig
> index 26186439db6b..7277c1051ca2 100644
> --- a/drivers/i2c/busses/Kconfig
> +++ b/drivers/i2c/busses/Kconfig
> @@ -435,7 +435,7 @@ config I2C_AXXIA
>
> config I2C_BCM2835
> tristate "Broadcom BCM2835 I2C controller"
> - depends on ARCH_BCM2835
> + depends on ARCH_BCM2835 || ARCH_BRCMSTB
> help
> If you say yes to this option, support will be included for the
> BCM2835 I2C controller.
Reviewed-by: Jean Delvare <jdelvare@suse.de>
Thanks,
--
Jean Delvare
SUSE L3 Support
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] i2c: Allow selecting BCM2835 I2C controllers on ARCH_BRCMSTB
2019-05-09 21:04 [PATCH] i2c: Allow selecting BCM2835 I2C controllers on ARCH_BRCMSTB Florian Fainelli
2019-05-10 8:12 ` Jean Delvare
@ 2019-05-27 19:21 ` Wolfram Sang
1 sibling, 0 replies; 3+ messages in thread
From: Wolfram Sang @ 2019-05-27 19:21 UTC (permalink / raw)
To: Florian Fainelli
Cc: linux-arm-kernel, Kamal Dasu, Jean Delvare, Jarkko Nikula,
Andy Shevchenko, Vignesh R, Eddie James, Heikki Krogerus,
Ajay Gupta, Karthikeyan Ramasubramanian, Juergen Fitschen,
Elie Morisse, open list:I2C SUBSYSTEM HOST DRIVERS, open list
[-- Attachment #1: Type: text/plain, Size: 383 bytes --]
On Thu, May 09, 2019 at 02:04:36PM -0700, Florian Fainelli wrote:
> From: Kamal Dasu <kdasu.kdev@gmail.com>
>
> ARCH_BRCMSTB platforms have the BCM2835 I2C controllers, allow
> selecting the i2c-bcm2835 driver on such platforms.
>
> Signed-off-by: Kamal Dasu <kdasu.kdev@gmail.com>
> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Applied to for-next, thanks!
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-05-27 19:22 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-09 21:04 [PATCH] i2c: Allow selecting BCM2835 I2C controllers on ARCH_BRCMSTB Florian Fainelli
2019-05-10 8:12 ` Jean Delvare
2019-05-27 19:21 ` Wolfram Sang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).