Re: [PATCH v7 04/24] mfd: max77686: Make platform data over-rule DT

2014-07-18 Thread Lee Jones
On Fri, 04 Jul 2014, Javier Martinez Canillas wrote:

 The function max77802_i2c_parse_dt_pdata() should only be called
 if there isn't already platform data for the device.
 
 Signed-off-by: Javier Martinez Canillas javier.marti...@collabora.co.uk
 ---
  drivers/mfd/max77686.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

Applied now, thanks.

 diff --git a/drivers/mfd/max77686.c b/drivers/mfd/max77686.c
 index d1f9d04..12d4c17 100644
 --- a/drivers/mfd/max77686.c
 +++ b/drivers/mfd/max77686.c
 @@ -124,7 +124,7 @@ static int max77686_i2c_probe(struct i2c_client *i2c,
   unsigned int data;
   int ret = 0;
  
 - if (IS_ENABLED(CONFIG_OF)  i2c-dev.of_node)
 + if (IS_ENABLED(CONFIG_OF)  i2c-dev.of_node  !pdata)
   pdata = max77686_i2c_parse_dt_pdata(i2c-dev);
  
   if (!pdata) {

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
--
To unsubscribe from this list: send the line unsubscribe linux-samsung-soc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v7 04/24] mfd: max77686: Make platform data over-rule DT

2014-07-09 Thread Lee Jones
On Fri, 04 Jul 2014, Javier Martinez Canillas wrote:

 The function max77802_i2c_parse_dt_pdata() should only be called
 if there isn't already platform data for the device.
 
 Signed-off-by: Javier Martinez Canillas javier.marti...@collabora.co.uk
 ---
  drivers/mfd/max77686.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

I assume some of these patches can be applied independently.

Let me know which ones and I'll apply them.  In the mean time:

Acked-by: Lee Jones lee.jo...@linaro.org

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
--
To unsubscribe from this list: send the line unsubscribe linux-samsung-soc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v7 04/24] mfd: max77686: Make platform data over-rule DT

2014-07-09 Thread Javier Martinez Canillas
Hello Lee,

On 07/09/2014 04:52 PM, Lee Jones wrote:
 On Fri, 04 Jul 2014, Javier Martinez Canillas wrote:
 
 The function max77802_i2c_parse_dt_pdata() should only be called
 if there isn't already platform data for the device.
 
 Signed-off-by: Javier Martinez Canillas javier.marti...@collabora.co.uk
 ---
  drivers/mfd/max77686.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 I assume some of these patches can be applied independently.


Yes, some patches can be applied independently and it would be quite helpful
indeed since that will allow me to keep a smaller series :)

 Let me know which ones and I'll apply them.  In the mean time:
 
 Acked-by: Lee Jones lee.jo...@linaro.org
 

Patches 1-7 are just cleanups and improvements for max77686 mfd driver so they
can be applied safely. You had already acked 1-6 and 7 is just a trivial patch
so I guess you won't have issues with that one as well.

Patches 11 and 14 are small patches for the max77802 clk driver and Mike already
gave his Reviewed-by tag so if you are going to take the whole set through your
tree those two patches are safe to be applied as well.

Thanks a lot for your help and best regards,
Javier
--
To unsubscribe from this list: send the line unsubscribe linux-samsung-soc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v7 04/24] mfd: max77686: Make platform data over-rule DT

2014-07-04 Thread Javier Martinez Canillas
The function max77802_i2c_parse_dt_pdata() should only be called
if there isn't already platform data for the device.

Signed-off-by: Javier Martinez Canillas javier.marti...@collabora.co.uk
---
 drivers/mfd/max77686.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mfd/max77686.c b/drivers/mfd/max77686.c
index d1f9d04..12d4c17 100644
--- a/drivers/mfd/max77686.c
+++ b/drivers/mfd/max77686.c
@@ -124,7 +124,7 @@ static int max77686_i2c_probe(struct i2c_client *i2c,
unsigned int data;
int ret = 0;
 
-   if (IS_ENABLED(CONFIG_OF)  i2c-dev.of_node)
+   if (IS_ENABLED(CONFIG_OF)  i2c-dev.of_node  !pdata)
pdata = max77686_i2c_parse_dt_pdata(i2c-dev);
 
if (!pdata) {
-- 
2.0.0.rc2

--
To unsubscribe from this list: send the line unsubscribe linux-samsung-soc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html