linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] i2c: img-scb: Allow building for MIPS
@ 2014-11-18 23:58 Andrew Bresticker
  2014-11-19  0:03 ` James Hogan
  0 siblings, 1 reply; 4+ messages in thread
From: Andrew Bresticker @ 2014-11-18 23:58 UTC (permalink / raw)
  To: Wolfram Sang
  Cc: Ezequiel Garcia, James Hogan, James Hartley, linux-i2c,
	linux-kernel, Andrew Bresticker

The SCB is present on IMG SoCs other than the META-based TZ1090,
such as the MIPS-based Pistachio SoC.  Relax the Kconfig dependency
so that it can be built on any MIPS or META machine.

Signed-off-by: Andrew Bresticker <abrestic@chromium.org>
---
Based on i2c/for-next
---
 drivers/i2c/busses/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig
index 03c6119..16c649a 100644
--- a/drivers/i2c/busses/Kconfig
+++ b/drivers/i2c/busses/Kconfig
@@ -526,10 +526,10 @@ config I2C_IBM_IIC
 
 config I2C_IMG
 	tristate "Imagination Technologies I2C SCB Controller"
-	depends on SOC_TZ1090 || COMPILE_TEST
+	depends on MIPS || METAG || COMPILE_TEST
 	help
 	  Say Y here if you want to use the IMG I2C SCB controller,
-	  available on the TZ1090 SoC.
+	  available on the TZ1090 and other IMG SoCs.
 
 	  This driver can also be built as a module.  If so, the module
 	  will be called i2c-img-scb.
-- 
2.1.0.rc2.206.gedb03e5


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

* Re: [PATCH] i2c: img-scb: Allow building for MIPS
  2014-11-18 23:58 [PATCH] i2c: img-scb: Allow building for MIPS Andrew Bresticker
@ 2014-11-19  0:03 ` James Hogan
  2014-11-19  9:07   ` Wolfram Sang
  0 siblings, 1 reply; 4+ messages in thread
From: James Hogan @ 2014-11-19  0:03 UTC (permalink / raw)
  To: Andrew Bresticker
  Cc: Wolfram Sang, Ezequiel Garcia, James Hartley, linux-i2c, linux-kernel

On Tue, Nov 18, 2014 at 03:58:33PM -0800, Andrew Bresticker wrote:
> The SCB is present on IMG SoCs other than the META-based TZ1090,
> such as the MIPS-based Pistachio SoC.  Relax the Kconfig dependency
> so that it can be built on any MIPS or META machine.
> 
> Signed-off-by: Andrew Bresticker <abrestic@chromium.org>

Looks good to me.

Acked-by: James Hogan <james.hogan@imgtec.com>

Cheers
James

> ---
> Based on i2c/for-next
> ---
>  drivers/i2c/busses/Kconfig | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig
> index 03c6119..16c649a 100644
> --- a/drivers/i2c/busses/Kconfig
> +++ b/drivers/i2c/busses/Kconfig
> @@ -526,10 +526,10 @@ config I2C_IBM_IIC
>  
>  config I2C_IMG
>  	tristate "Imagination Technologies I2C SCB Controller"
> -	depends on SOC_TZ1090 || COMPILE_TEST
> +	depends on MIPS || METAG || COMPILE_TEST
>  	help
>  	  Say Y here if you want to use the IMG I2C SCB controller,
> -	  available on the TZ1090 SoC.
> +	  available on the TZ1090 and other IMG SoCs.
>  
>  	  This driver can also be built as a module.  If so, the module
>  	  will be called i2c-img-scb.
> -- 
> 2.1.0.rc2.206.gedb03e5
> 

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

* Re: [PATCH] i2c: img-scb: Allow building for MIPS
  2014-11-19  0:03 ` James Hogan
@ 2014-11-19  9:07   ` Wolfram Sang
  2014-11-20 10:18     ` Ezequiel Garcia
  0 siblings, 1 reply; 4+ messages in thread
From: Wolfram Sang @ 2014-11-19  9:07 UTC (permalink / raw)
  To: James Hogan
  Cc: Andrew Bresticker, Ezequiel Garcia, James Hartley, linux-i2c,
	linux-kernel

[-- Attachment #1: Type: text/plain, Size: 541 bytes --]

On Wed, Nov 19, 2014 at 12:03:08AM +0000, James Hogan wrote:
> On Tue, Nov 18, 2014 at 03:58:33PM -0800, Andrew Bresticker wrote:
> > The SCB is present on IMG SoCs other than the META-based TZ1090,
> > such as the MIPS-based Pistachio SoC.  Relax the Kconfig dependency
> > so that it can be built on any MIPS or META machine.
> > 
> > Signed-off-by: Andrew Bresticker <abrestic@chromium.org>
> 
> Looks good to me.
> 
> Acked-by: James Hogan <james.hogan@imgtec.com>
> 
> Cheers
> James
> 

Applied to for-next, thanks!


[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: [PATCH] i2c: img-scb: Allow building for MIPS
  2014-11-19  9:07   ` Wolfram Sang
@ 2014-11-20 10:18     ` Ezequiel Garcia
  0 siblings, 0 replies; 4+ messages in thread
From: Ezequiel Garcia @ 2014-11-20 10:18 UTC (permalink / raw)
  To: Wolfram Sang, James Hogan
  Cc: Andrew Bresticker, James Hartley, linux-i2c, linux-kernel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1



On 11/19/2014 06:07 AM, Wolfram Sang wrote:
> On Wed, Nov 19, 2014 at 12:03:08AM +0000, James Hogan wrote:
>> On Tue, Nov 18, 2014 at 03:58:33PM -0800, Andrew Bresticker
>> wrote:
>>> The SCB is present on IMG SoCs other than the META-based
>>> TZ1090, such as the MIPS-based Pistachio SoC.  Relax the
>>> Kconfig dependency so that it can be built on any MIPS or META
>>> machine.
>>> 
>>> Signed-off-by: Andrew Bresticker <abrestic@chromium.org>
>> 
>> Looks good to me.
>> 
>> Acked-by: James Hogan <james.hogan@imgtec.com>
>> 
>> Cheers James
>> 
> 
> Applied to for-next, thanks!
> 

Can't find this one, maybe it wasn't pushed yet?
- -- 
Ezequiel
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2

iQIcBAEBAgAGBQJUbcALAAoJEIOKbhOEIHKi5U4P+gJ/JwXOFFCbWxhA8SQZShWC
Rwx8RSlvhbsOPPc7G596mMu0nfFBQFVBOII1Pw6UByPlUpi5FaLxQtEnxdWYNGbX
nQ7opxx/r0Ml5z5FsNQnBZ8olaoBfzZb1o/yl91cavul8JND1DCiyljAhvFzwRkv
ggnb8e6VY4ezqhYeS7HxNeVVjl+a3VQRHXnRfKYY/yFzVGO8/p1dPEXgm30hbIiK
NW9DoTq7HRkgtPtEJR1/pR0OnRvE3nA7kgi0u5ZUA8zjlzMwDm1Bpn/MQugX/4Lq
bRCbF67AMYDQAbifimZoxG/mlXRXpaKvcS/o4yagoTdXQuWFPNrRZyRvz9fSaGuZ
GD3sE6IGYwhXIP+o6CIHL/6SUPT50+5hGCcuBivwr3fiBw3SzPDJXAG29gUXo0v7
vW4RTV+mouEgJX4YKdjtLaeCdOrru6zwXEVlhpCky8mczAoYFahK2nm7BhL/aC2y
7nrPNLGAaEg0MXuaWwmgBeYqIHkJyf4TAmL2A5uj4kb8zH7QlzyNSa4ETwL1VqkE
krEOjfr6KsQ2YW9MNEUK8S7ti9WB3ezUOQYEOKGn/w6ZAiynzev6YRg+sWyDhsK2
qZ065wYttrSB/ShHagbQbKt+4F+WXEkLl+T72ZNqwj+02G3/cU9i5BjH8XTsPfJu
Qp66n26U/8ynz4N5rafo
=qMRD
-----END PGP SIGNATURE-----

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

end of thread, other threads:[~2014-11-20 10:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-11-18 23:58 [PATCH] i2c: img-scb: Allow building for MIPS Andrew Bresticker
2014-11-19  0:03 ` James Hogan
2014-11-19  9:07   ` Wolfram Sang
2014-11-20 10:18     ` Ezequiel Garcia

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