public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] phy: exynos-dp-video: Use PTR_ERR_OR_ZERO
@ 2014-05-29  6:30 Sachin Kamat
  2014-05-29  6:30 ` [PATCH 2/3] phy: exynos-mipi-video: " Sachin Kamat
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Sachin Kamat @ 2014-05-29  6:30 UTC (permalink / raw)
  To: linux-kernel; +Cc: kishon, sachin.kamat, Jingoo Han

PTR_ERR_OR_ZERO simplifies the code.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Jingoo Han <jg1.han@samsung.com>
---
 drivers/phy/phy-exynos-dp-video.c |    5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/phy/phy-exynos-dp-video.c b/drivers/phy/phy-exynos-dp-video.c
index 0786fef842e7..098f822a2fa4 100644
--- a/drivers/phy/phy-exynos-dp-video.c
+++ b/drivers/phy/phy-exynos-dp-video.c
@@ -9,6 +9,7 @@
  * published by the Free Software Foundation.
  */
 
+#include <linux/err.h>
 #include <linux/io.h>
 #include <linux/kernel.h>
 #include <linux/module.h>
@@ -84,10 +85,8 @@ static int exynos_dp_video_phy_probe(struct platform_device *pdev)
 	phy_set_drvdata(phy, state);
 
 	phy_provider = devm_of_phy_provider_register(dev, of_phy_simple_xlate);
-	if (IS_ERR(phy_provider))
-		return PTR_ERR(phy_provider);
 
-	return 0;
+	return PTR_ERR_OR_ZERO(phy_provider);
 }
 
 static const struct of_device_id exynos_dp_video_phy_of_match[] = {
-- 
1.7.9.5


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

* [PATCH 2/3] phy: exynos-mipi-video: Use PTR_ERR_OR_ZERO
  2014-05-29  6:30 [PATCH 1/3] phy: exynos-dp-video: Use PTR_ERR_OR_ZERO Sachin Kamat
@ 2014-05-29  6:30 ` Sachin Kamat
  2014-05-30 12:58   ` Sylwester Nawrocki
  2014-05-29  6:30 ` [PATCH 3/3] phy: sun4i-usb: " Sachin Kamat
  2014-06-02  2:26 ` [PATCH 1/3] phy: exynos-dp-video: " Jingoo Han
  2 siblings, 1 reply; 10+ messages in thread
From: Sachin Kamat @ 2014-05-29  6:30 UTC (permalink / raw)
  To: linux-kernel; +Cc: kishon, sachin.kamat, Sylwester Nawrocki

PTR_ERR_OR_ZERO simplifies the code.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Sylwester Nawrocki <s.nawrocki@samsung.com>
---
 drivers/phy/phy-exynos-mipi-video.c |    5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/phy/phy-exynos-mipi-video.c b/drivers/phy/phy-exynos-mipi-video.c
index ff026689358c..6d6bcf52a10e 100644
--- a/drivers/phy/phy-exynos-mipi-video.c
+++ b/drivers/phy/phy-exynos-mipi-video.c
@@ -9,6 +9,7 @@
  * published by the Free Software Foundation.
  */
 
+#include <linux/err.h>
 #include <linux/io.h>
 #include <linux/kernel.h>
 #include <linux/module.h>
@@ -149,10 +150,8 @@ static int exynos_mipi_video_phy_probe(struct platform_device *pdev)
 
 	phy_provider = devm_of_phy_provider_register(dev,
 					exynos_mipi_video_phy_xlate);
-	if (IS_ERR(phy_provider))
-		return PTR_ERR(phy_provider);
 
-	return 0;
+	return PTR_ERR_OR_ZERO(phy_provider);
 }
 
 static const struct of_device_id exynos_mipi_video_phy_of_match[] = {
-- 
1.7.9.5


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

* [PATCH 3/3] phy: sun4i-usb: Use PTR_ERR_OR_ZERO
  2014-05-29  6:30 [PATCH 1/3] phy: exynos-dp-video: Use PTR_ERR_OR_ZERO Sachin Kamat
  2014-05-29  6:30 ` [PATCH 2/3] phy: exynos-mipi-video: " Sachin Kamat
@ 2014-05-29  6:30 ` Sachin Kamat
  2014-05-30  8:13   ` Hans de Goede
  2014-06-02  2:26 ` [PATCH 1/3] phy: exynos-dp-video: " Jingoo Han
  2 siblings, 1 reply; 10+ messages in thread
From: Sachin Kamat @ 2014-05-29  6:30 UTC (permalink / raw)
  To: linux-kernel; +Cc: kishon, sachin.kamat, Hans de Goede, Maxime Ripard

PTR_ERR_OR_ZERO simplifies the code.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Hans de Goede <hdegoede@redhat.com>
Cc: Maxime Ripard <maxime.ripard@free-electrons.com>
---
 drivers/phy/phy-sun4i-usb.c |    5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/phy/phy-sun4i-usb.c b/drivers/phy/phy-sun4i-usb.c
index 115d8d5190d5..7a4ea552f621 100644
--- a/drivers/phy/phy-sun4i-usb.c
+++ b/drivers/phy/phy-sun4i-usb.c
@@ -22,6 +22,7 @@
  */
 
 #include <linux/clk.h>
+#include <linux/err.h>
 #include <linux/io.h>
 #include <linux/kernel.h>
 #include <linux/module.h>
@@ -306,10 +307,8 @@ static int sun4i_usb_phy_probe(struct platform_device *pdev)
 
 	dev_set_drvdata(dev, data);
 	phy_provider = devm_of_phy_provider_register(dev, sun4i_usb_phy_xlate);
-	if (IS_ERR(phy_provider))
-		return PTR_ERR(phy_provider);
 
-	return 0;
+	return PTR_ERR_OR_ZERO(phy_provider);
 }
 
 static const struct of_device_id sun4i_usb_phy_of_match[] = {
-- 
1.7.9.5


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

* Re: [PATCH 3/3] phy: sun4i-usb: Use PTR_ERR_OR_ZERO
  2014-05-29  6:30 ` [PATCH 3/3] phy: sun4i-usb: " Sachin Kamat
@ 2014-05-30  8:13   ` Hans de Goede
  0 siblings, 0 replies; 10+ messages in thread
From: Hans de Goede @ 2014-05-30  8:13 UTC (permalink / raw)
  To: Sachin Kamat, linux-kernel; +Cc: kishon, Maxime Ripard

Hi,

On 05/29/2014 08:30 AM, Sachin Kamat wrote:
> PTR_ERR_OR_ZERO simplifies the code.
> 
> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
> Cc: Hans de Goede <hdegoede@redhat.com>
> Cc: Maxime Ripard <maxime.ripard@free-electrons.com>
> ---
>  drivers/phy/phy-sun4i-usb.c |    5 ++---
>  1 file changed, 2 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/phy/phy-sun4i-usb.c b/drivers/phy/phy-sun4i-usb.c
> index 115d8d5190d5..7a4ea552f621 100644
> --- a/drivers/phy/phy-sun4i-usb.c
> +++ b/drivers/phy/phy-sun4i-usb.c
> @@ -22,6 +22,7 @@
>   */
>  
>  #include <linux/clk.h>
> +#include <linux/err.h>
>  #include <linux/io.h>
>  #include <linux/kernel.h>
>  #include <linux/module.h>
> @@ -306,10 +307,8 @@ static int sun4i_usb_phy_probe(struct platform_device *pdev)
>  
>  	dev_set_drvdata(dev, data);
>  	phy_provider = devm_of_phy_provider_register(dev, sun4i_usb_phy_xlate);
> -	if (IS_ERR(phy_provider))
> -		return PTR_ERR(phy_provider);
>  
> -	return 0;
> +	return PTR_ERR_OR_ZERO(phy_provider);
>  }
>  
>  static const struct of_device_id sun4i_usb_phy_of_match[] = {
> 


Looks good:

Acked-by: Hans de Goede <hdegoede@redhat.com>

Regards,

Hans

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

* Re: [PATCH 2/3] phy: exynos-mipi-video: Use PTR_ERR_OR_ZERO
  2014-05-29  6:30 ` [PATCH 2/3] phy: exynos-mipi-video: " Sachin Kamat
@ 2014-05-30 12:58   ` Sylwester Nawrocki
  0 siblings, 0 replies; 10+ messages in thread
From: Sylwester Nawrocki @ 2014-05-30 12:58 UTC (permalink / raw)
  To: Sachin Kamat; +Cc: linux-kernel, kishon

Hi Sachin,

On 29/05/14 08:30, Sachin Kamat wrote:
> PTR_ERR_OR_ZERO simplifies the code.
> 
> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
> Cc: Sylwester Nawrocki <s.nawrocki@samsung.com>
> ---
>  drivers/phy/phy-exynos-mipi-video.c |    5 ++---
>  1 file changed, 2 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/phy/phy-exynos-mipi-video.c b/drivers/phy/phy-exynos-mipi-video.c
> index ff026689358c..6d6bcf52a10e 100644
> --- a/drivers/phy/phy-exynos-mipi-video.c
> +++ b/drivers/phy/phy-exynos-mipi-video.c
> @@ -9,6 +9,7 @@
>   * published by the Free Software Foundation.
>   */
>  
> +#include <linux/err.h>
>  #include <linux/io.h>
>  #include <linux/kernel.h>
>  #include <linux/module.h>
> @@ -149,10 +150,8 @@ static int exynos_mipi_video_phy_probe(struct platform_device *pdev)
>  
>  	phy_provider = devm_of_phy_provider_register(dev,
>  					exynos_mipi_video_phy_xlate);
> -	if (IS_ERR(phy_provider))
> -		return PTR_ERR(phy_provider);
>  
> -	return 0;
> +	return PTR_ERR_OR_ZERO(phy_provider);

I'm not convinced this is actually an improvement. For me it sounds more
like  obfuscation of the code and reminds me the infamous IS_ERR_OR_NULL()
macro. I'd personally not introduce this change, but if Kishon thinks it's
good I won't object to merging it.

--
Thanks,
Sylwester

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

* Re: [PATCH 1/3] phy: exynos-dp-video: Use PTR_ERR_OR_ZERO
  2014-05-29  6:30 [PATCH 1/3] phy: exynos-dp-video: Use PTR_ERR_OR_ZERO Sachin Kamat
  2014-05-29  6:30 ` [PATCH 2/3] phy: exynos-mipi-video: " Sachin Kamat
  2014-05-29  6:30 ` [PATCH 3/3] phy: sun4i-usb: " Sachin Kamat
@ 2014-06-02  2:26 ` Jingoo Han
  2014-06-12  9:49   ` Sachin Kamat
  2 siblings, 1 reply; 10+ messages in thread
From: Jingoo Han @ 2014-06-02  2:26 UTC (permalink / raw)
  To: 'Sachin Kamat', 'Kishon Vijay Abraham I'
  Cc: linux-kernel, 'Jingoo Han'

On Thursday, May 29, 2014 3:31 PM, Sachin Kamat wrote:
> 
> PTR_ERR_OR_ZERO simplifies the code.
> 
> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
> Cc: Jingoo Han <jg1.han@samsung.com>

Acked-by: Jingoo Han <jg1.han@samsung.com>

Best regards,
Jingoo Han

> ---
>  drivers/phy/phy-exynos-dp-video.c |    5 ++---
>  1 file changed, 2 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/phy/phy-exynos-dp-video.c b/drivers/phy/phy-exynos-dp-video.c
> index 0786fef842e7..098f822a2fa4 100644
> --- a/drivers/phy/phy-exynos-dp-video.c
> +++ b/drivers/phy/phy-exynos-dp-video.c
> @@ -9,6 +9,7 @@
>   * published by the Free Software Foundation.
>   */
> 
> +#include <linux/err.h>
>  #include <linux/io.h>
>  #include <linux/kernel.h>
>  #include <linux/module.h>
> @@ -84,10 +85,8 @@ static int exynos_dp_video_phy_probe(struct platform_device *pdev)
>  	phy_set_drvdata(phy, state);
> 
>  	phy_provider = devm_of_phy_provider_register(dev, of_phy_simple_xlate);
> -	if (IS_ERR(phy_provider))
> -		return PTR_ERR(phy_provider);
> 
> -	return 0;
> +	return PTR_ERR_OR_ZERO(phy_provider);
>  }
> 
>  static const struct of_device_id exynos_dp_video_phy_of_match[] = {
> --
> 1.7.9.5


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

* Re: [PATCH 1/3] phy: exynos-dp-video: Use PTR_ERR_OR_ZERO
  2014-06-02  2:26 ` [PATCH 1/3] phy: exynos-dp-video: " Jingoo Han
@ 2014-06-12  9:49   ` Sachin Kamat
  2014-06-12  9:57     ` Kishon Vijay Abraham I
  0 siblings, 1 reply; 10+ messages in thread
From: Sachin Kamat @ 2014-06-12  9:49 UTC (permalink / raw)
  To: Kishon Vijay Abraham I; +Cc: linux-kernel

Hi Kishon,

On Mon, Jun 2, 2014 at 7:56 AM, Jingoo Han <jg1.han@samsung.com> wrote:
> On Thursday, May 29, 2014 3:31 PM, Sachin Kamat wrote:
>>
>> PTR_ERR_OR_ZERO simplifies the code.
>>
>> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
>> Cc: Jingoo Han <jg1.han@samsung.com>
>
> Acked-by: Jingoo Han <jg1.han@samsung.com>
>
> Best regards,
> Jingoo Han
>
>> ---
>>  drivers/phy/phy-exynos-dp-video.c |    5 ++---
>>  1 file changed, 2 insertions(+), 3 deletions(-)
>>
>> diff --git a/drivers/phy/phy-exynos-dp-video.c b/drivers/phy/phy-exynos-dp-video.c
>> index 0786fef842e7..098f822a2fa4 100644
>> --- a/drivers/phy/phy-exynos-dp-video.c
>> +++ b/drivers/phy/phy-exynos-dp-video.c
>> @@ -9,6 +9,7 @@
>>   * published by the Free Software Foundation.
>>   */
>>
>> +#include <linux/err.h>
>>  #include <linux/io.h>
>>  #include <linux/kernel.h>
>>  #include <linux/module.h>
>> @@ -84,10 +85,8 @@ static int exynos_dp_video_phy_probe(struct platform_device *pdev)
>>       phy_set_drvdata(phy, state);
>>
>>       phy_provider = devm_of_phy_provider_register(dev, of_phy_simple_xlate);
>> -     if (IS_ERR(phy_provider))
>> -             return PTR_ERR(phy_provider);
>>
>> -     return 0;
>> +     return PTR_ERR_OR_ZERO(phy_provider);
>>  }
>>
>>  static const struct of_device_id exynos_dp_video_phy_of_match[] = {
>> --
>> 1.7.9.5
>
>

ping on this series.

-- 
Regards,
Sachin.

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

* Re: [PATCH 1/3] phy: exynos-dp-video: Use PTR_ERR_OR_ZERO
  2014-06-12  9:49   ` Sachin Kamat
@ 2014-06-12  9:57     ` Kishon Vijay Abraham I
  2014-06-12  9:59       ` Sachin Kamat
  2014-07-02  8:44       ` Sachin Kamat
  0 siblings, 2 replies; 10+ messages in thread
From: Kishon Vijay Abraham I @ 2014-06-12  9:57 UTC (permalink / raw)
  To: Sachin Kamat; +Cc: linux-kernel



On Thursday 12 June 2014 03:19 PM, Sachin Kamat wrote:
> Hi Kishon,
> 
> On Mon, Jun 2, 2014 at 7:56 AM, Jingoo Han <jg1.han@samsung.com> wrote:
>> On Thursday, May 29, 2014 3:31 PM, Sachin Kamat wrote:
>>>
>>> PTR_ERR_OR_ZERO simplifies the code.
>>>
>>> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
>>> Cc: Jingoo Han <jg1.han@samsung.com>
>>
>> Acked-by: Jingoo Han <jg1.han@samsung.com>
>>
>> Best regards,
>> Jingoo Han
>>
>>> ---
>>>  drivers/phy/phy-exynos-dp-video.c |    5 ++---
>>>  1 file changed, 2 insertions(+), 3 deletions(-)
>>>
>>> diff --git a/drivers/phy/phy-exynos-dp-video.c b/drivers/phy/phy-exynos-dp-video.c
>>> index 0786fef842e7..098f822a2fa4 100644
>>> --- a/drivers/phy/phy-exynos-dp-video.c
>>> +++ b/drivers/phy/phy-exynos-dp-video.c
>>> @@ -9,6 +9,7 @@
>>>   * published by the Free Software Foundation.
>>>   */
>>>
>>> +#include <linux/err.h>
>>>  #include <linux/io.h>
>>>  #include <linux/kernel.h>
>>>  #include <linux/module.h>
>>> @@ -84,10 +85,8 @@ static int exynos_dp_video_phy_probe(struct platform_device *pdev)
>>>       phy_set_drvdata(phy, state);
>>>
>>>       phy_provider = devm_of_phy_provider_register(dev, of_phy_simple_xlate);
>>> -     if (IS_ERR(phy_provider))
>>> -             return PTR_ERR(phy_provider);
>>>
>>> -     return 0;
>>> +     return PTR_ERR_OR_ZERO(phy_provider);
>>>  }
>>>
>>>  static const struct of_device_id exynos_dp_video_phy_of_match[] = {
>>> --
>>> 1.7.9.5
>>
>>
> 
> ping on this series.

I'll queue to -next once -rc1 is tagged.

-Kishon
> 

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

* Re: [PATCH 1/3] phy: exynos-dp-video: Use PTR_ERR_OR_ZERO
  2014-06-12  9:57     ` Kishon Vijay Abraham I
@ 2014-06-12  9:59       ` Sachin Kamat
  2014-07-02  8:44       ` Sachin Kamat
  1 sibling, 0 replies; 10+ messages in thread
From: Sachin Kamat @ 2014-06-12  9:59 UTC (permalink / raw)
  To: Kishon Vijay Abraham I; +Cc: linux-kernel

On Thu, Jun 12, 2014 at 3:27 PM, Kishon Vijay Abraham I <kishon@ti.com> wrote:
>
>
> On Thursday 12 June 2014 03:19 PM, Sachin Kamat wrote:
>> Hi Kishon,
>>
>> On Mon, Jun 2, 2014 at 7:56 AM, Jingoo Han <jg1.han@samsung.com> wrote:
>>> On Thursday, May 29, 2014 3:31 PM, Sachin Kamat wrote:
>>>>
>>>> PTR_ERR_OR_ZERO simplifies the code.
>>>>
>>>> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
>>>> Cc: Jingoo Han <jg1.han@samsung.com>
>>>
>>> Acked-by: Jingoo Han <jg1.han@samsung.com>
>>>
>>> Best regards,
>>> Jingoo Han
>>>
>>>> ---
>>>>  drivers/phy/phy-exynos-dp-video.c |    5 ++---
>>>>  1 file changed, 2 insertions(+), 3 deletions(-)
>>>>
>>>> diff --git a/drivers/phy/phy-exynos-dp-video.c b/drivers/phy/phy-exynos-dp-video.c
>>>> index 0786fef842e7..098f822a2fa4 100644
>>>> --- a/drivers/phy/phy-exynos-dp-video.c
>>>> +++ b/drivers/phy/phy-exynos-dp-video.c
>>>> @@ -9,6 +9,7 @@
>>>>   * published by the Free Software Foundation.
>>>>   */
>>>>
>>>> +#include <linux/err.h>
>>>>  #include <linux/io.h>
>>>>  #include <linux/kernel.h>
>>>>  #include <linux/module.h>
>>>> @@ -84,10 +85,8 @@ static int exynos_dp_video_phy_probe(struct platform_device *pdev)
>>>>       phy_set_drvdata(phy, state);
>>>>
>>>>       phy_provider = devm_of_phy_provider_register(dev, of_phy_simple_xlate);
>>>> -     if (IS_ERR(phy_provider))
>>>> -             return PTR_ERR(phy_provider);
>>>>
>>>> -     return 0;
>>>> +     return PTR_ERR_OR_ZERO(phy_provider);
>>>>  }
>>>>
>>>>  static const struct of_device_id exynos_dp_video_phy_of_match[] = {
>>>> --
>>>> 1.7.9.5
>>>
>>>
>>
>> ping on this series.
>
> I'll queue to -next once -rc1 is tagged.

Thanks Kishon.

-- 
Regards,
Sachin.

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

* Re: [PATCH 1/3] phy: exynos-dp-video: Use PTR_ERR_OR_ZERO
  2014-06-12  9:57     ` Kishon Vijay Abraham I
  2014-06-12  9:59       ` Sachin Kamat
@ 2014-07-02  8:44       ` Sachin Kamat
  1 sibling, 0 replies; 10+ messages in thread
From: Sachin Kamat @ 2014-07-02  8:44 UTC (permalink / raw)
  To: Kishon Vijay Abraham I; +Cc: open list

On Thu, Jun 12, 2014 at 3:27 PM, Kishon Vijay Abraham I <kishon@ti.com> wrote:
>
>
> On Thursday 12 June 2014 03:19 PM, Sachin Kamat wrote:
>> Hi Kishon,
>>
>> On Mon, Jun 2, 2014 at 7:56 AM, Jingoo Han <jg1.han@samsung.com> wrote:
>>> On Thursday, May 29, 2014 3:31 PM, Sachin Kamat wrote:
>>>>
>>>> PTR_ERR_OR_ZERO simplifies the code.
>>>>
>>>> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
>>>> Cc: Jingoo Han <jg1.han@samsung.com>
>>>
>>> Acked-by: Jingoo Han <jg1.han@samsung.com>
>>>
>>> Best regards,
>>> Jingoo Han
>>>
>>>> ---
>>>>  drivers/phy/phy-exynos-dp-video.c |    5 ++---
>>>>  1 file changed, 2 insertions(+), 3 deletions(-)
>>>>
>>>> diff --git a/drivers/phy/phy-exynos-dp-video.c b/drivers/phy/phy-exynos-dp-video.c
>>>> index 0786fef842e7..098f822a2fa4 100644
>>>> --- a/drivers/phy/phy-exynos-dp-video.c
>>>> +++ b/drivers/phy/phy-exynos-dp-video.c
>>>> @@ -9,6 +9,7 @@
>>>>   * published by the Free Software Foundation.
>>>>   */
>>>>
>>>> +#include <linux/err.h>
>>>>  #include <linux/io.h>
>>>>  #include <linux/kernel.h>
>>>>  #include <linux/module.h>
>>>> @@ -84,10 +85,8 @@ static int exynos_dp_video_phy_probe(struct platform_device *pdev)
>>>>       phy_set_drvdata(phy, state);
>>>>
>>>>       phy_provider = devm_of_phy_provider_register(dev, of_phy_simple_xlate);
>>>> -     if (IS_ERR(phy_provider))
>>>> -             return PTR_ERR(phy_provider);
>>>>
>>>> -     return 0;
>>>> +     return PTR_ERR_OR_ZERO(phy_provider);
>>>>  }
>>>>
>>>>  static const struct of_device_id exynos_dp_video_phy_of_match[] = {
>>>> --
>>>> 1.7.9.5
>>>
>>>
>>
>> ping on this series.
>
> I'll queue to -next once -rc1 is tagged.

Gentle ping..


-- 
Regards,
Sachin.

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

end of thread, other threads:[~2014-07-02  8:44 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-29  6:30 [PATCH 1/3] phy: exynos-dp-video: Use PTR_ERR_OR_ZERO Sachin Kamat
2014-05-29  6:30 ` [PATCH 2/3] phy: exynos-mipi-video: " Sachin Kamat
2014-05-30 12:58   ` Sylwester Nawrocki
2014-05-29  6:30 ` [PATCH 3/3] phy: sun4i-usb: " Sachin Kamat
2014-05-30  8:13   ` Hans de Goede
2014-06-02  2:26 ` [PATCH 1/3] phy: exynos-dp-video: " Jingoo Han
2014-06-12  9:49   ` Sachin Kamat
2014-06-12  9:57     ` Kishon Vijay Abraham I
2014-06-12  9:59       ` Sachin Kamat
2014-07-02  8:44       ` Sachin Kamat

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox