linux-i2c.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH AUTOSEL 4.18 39/59] i2c: omap: Enable for ARCH_K3
       [not found] <20181114222335.99339-1-sashal@kernel.org>
@ 2018-11-14 22:23 ` Sasha Levin
  2018-11-15  4:35   ` Vignesh R
  0 siblings, 1 reply; 3+ messages in thread
From: Sasha Levin @ 2018-11-14 22:23 UTC (permalink / raw)
  To: stable, linux-kernel; +Cc: Vignesh R, Wolfram Sang, Sasha Levin, linux-i2c

From: Vignesh R <vigneshr@ti.com>

[ Upstream commit 5b277402deac0691226a947df71c581686bd4020 ]

Allow I2C_OMAP to be built for K3 platforms.

Signed-off-by: Vignesh R <vigneshr@ti.com>
Reviewed-by: Grygorii Strashko <grygorii.strashko@ti.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 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 4f8df2ec87b1..fb3a3707a66e 100644
--- a/drivers/i2c/busses/Kconfig
+++ b/drivers/i2c/busses/Kconfig
@@ -754,7 +754,7 @@ config I2C_OCORES
 
 config I2C_OMAP
 	tristate "OMAP I2C adapter"
-	depends on ARCH_OMAP
+	depends on ARCH_OMAP || ARCH_K3
 	default y if MACH_OMAP_H3 || MACH_OMAP_OSK
 	help
 	  If you say yes to this option, support will be included for the
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH AUTOSEL 4.18 39/59] i2c: omap: Enable for ARCH_K3
  2018-11-14 22:23 ` [PATCH AUTOSEL 4.18 39/59] i2c: omap: Enable for ARCH_K3 Sasha Levin
@ 2018-11-15  4:35   ` Vignesh R
  2018-11-22 19:31     ` Sasha Levin
  0 siblings, 1 reply; 3+ messages in thread
From: Vignesh R @ 2018-11-15  4:35 UTC (permalink / raw)
  To: Sasha Levin, stable@vger.kernel.org, linux-kernel@vger.kernel.org
  Cc: Wolfram Sang, linux-i2c@vger.kernel.org

Hi,

On 15/11/18 3:53 AM, Sasha Levin wrote:
> From: Vignesh R <vigneshr@ti.com>
> 
> [ Upstream commit 5b277402deac0691226a947df71c581686bd4020 ]

This patch depends on c77245722fb4 ("arm64: Add support for TI's K3
Multicore SoC architecture") which adds ARCH_K3 Kconfig symbol and
merged to mainline in v4.19. Since I don't see c77245722fb4 in
stable tree, please drop this commit from stable queues prior to v4.19
(4.18, 4.14, 4.9, 4.4 and 3.18).

> 
> Allow I2C_OMAP to be built for K3 platforms.
> 
> Signed-off-by: Vignesh R <vigneshr@ti.com>
> Reviewed-by: Grygorii Strashko <grygorii.strashko@ti.com>
> Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
> Signed-off-by: Sasha Levin <sashal@kernel.org>
> ---
>  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 4f8df2ec87b1..fb3a3707a66e 100644
> --- a/drivers/i2c/busses/Kconfig
> +++ b/drivers/i2c/busses/Kconfig
> @@ -754,7 +754,7 @@ config I2C_OCORES
>  
>  config I2C_OMAP
>  	tristate "OMAP I2C adapter"
> -	depends on ARCH_OMAP
> +	depends on ARCH_OMAP || ARCH_K3
>  	default y if MACH_OMAP_H3 || MACH_OMAP_OSK
>  	help
>  	  If you say yes to this option, support will be included for the
> 

-- 
Regards
Vignesh

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH AUTOSEL 4.18 39/59] i2c: omap: Enable for ARCH_K3
  2018-11-15  4:35   ` Vignesh R
@ 2018-11-22 19:31     ` Sasha Levin
  0 siblings, 0 replies; 3+ messages in thread
From: Sasha Levin @ 2018-11-22 19:31 UTC (permalink / raw)
  To: Vignesh R
  Cc: stable@vger.kernel.org, linux-kernel@vger.kernel.org,
	Wolfram Sang, linux-i2c@vger.kernel.org

On Thu, Nov 15, 2018 at 10:05:02AM +0530, Vignesh R wrote:
>Hi,
>
>On 15/11/18 3:53 AM, Sasha Levin wrote:
>> From: Vignesh R <vigneshr@ti.com>
>>
>> [ Upstream commit 5b277402deac0691226a947df71c581686bd4020 ]
>
>This patch depends on c77245722fb4 ("arm64: Add support for TI's K3
>Multicore SoC architecture") which adds ARCH_K3 Kconfig symbol and
>merged to mainline in v4.19. Since I don't see c77245722fb4 in
>stable tree, please drop this commit from stable queues prior to v4.19
>(4.18, 4.14, 4.9, 4.4 and 3.18).

Dropped, thank you!

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-11-22 19:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20181114222335.99339-1-sashal@kernel.org>
2018-11-14 22:23 ` [PATCH AUTOSEL 4.18 39/59] i2c: omap: Enable for ARCH_K3 Sasha Levin
2018-11-15  4:35   ` Vignesh R
2018-11-22 19:31     ` Sasha Levin

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).