All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] devfreq: Convert to using %pOF instead of full_name
@ 2017-07-18 21:42 ` Rob Herring
  2017-07-19  1:38   ` Chanwoo Choi
       [not found]   ` <CGME20170718214411epcas2p43fc1475c80245889737ba9e731497e38@epcms1p2>
  0 siblings, 2 replies; 9+ messages in thread
From: Rob Herring @ 2017-07-18 21:42 UTC (permalink / raw)
  To: MyungJoo Ham
  Cc: linux-kernel, devicetree, Chanwoo Choi, Kyungmin Park, linux-pm

Now that we have a custom printf format specifier, convert users of
full_name to use %pOF instead. This is preparation to remove storing
of the full path string for each node.

Signed-off-by: Rob Herring <robh@kernel.org>
Cc: Chanwoo Choi <cw00.choi@samsung.com>
Cc: MyungJoo Ham <myungjoo.ham@samsung.com>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Cc: linux-pm@vger.kernel.org
---
 drivers/devfreq/devfreq-event.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/devfreq/devfreq-event.c b/drivers/devfreq/devfreq-event.c
index 8648b32ebc89..d67242d87744 100644
--- a/drivers/devfreq/devfreq-event.c
+++ b/drivers/devfreq/devfreq-event.c
@@ -277,8 +277,8 @@ int devfreq_event_get_edev_count(struct device *dev)
 						sizeof(u32));
 	if (count < 0) {
 		dev_err(dev,
-			"failed to get the count of devfreq-event in %s node\n",
-			dev->of_node->full_name);
+			"failed to get the count of devfreq-event in %pOF node\n",
+			dev->of_node);
 		return count;
 	}

--
2.11.0

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

* Re: [PATCH] devfreq: Convert to using %pOF instead of full_name
  2017-07-18 21:42 ` [PATCH] devfreq: Convert to using %pOF instead of full_name Rob Herring
@ 2017-07-19  1:38   ` Chanwoo Choi
       [not found]   ` <CGME20170718214411epcas2p43fc1475c80245889737ba9e731497e38@epcms1p2>
  1 sibling, 0 replies; 9+ messages in thread
From: Chanwoo Choi @ 2017-07-19  1:38 UTC (permalink / raw)
  To: Rob Herring, MyungJoo Ham
  Cc: linux-kernel, devicetree, Kyungmin Park, linux-pm

Hi,

On 2017년 07월 19일 06:42, Rob Herring wrote:
> Now that we have a custom printf format specifier, convert users of
> full_name to use %pOF instead. This is preparation to remove storing
> of the full path string for each node.
> 
> Signed-off-by: Rob Herring <robh@kernel.org>
> Cc: Chanwoo Choi <cw00.choi@samsung.com>
> Cc: MyungJoo Ham <myungjoo.ham@samsung.com>
> Cc: Kyungmin Park <kyungmin.park@samsung.com>
> Cc: linux-pm@vger.kernel.org
> ---
>  drivers/devfreq/devfreq-event.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/devfreq/devfreq-event.c b/drivers/devfreq/devfreq-event.c
> index 8648b32ebc89..d67242d87744 100644
> --- a/drivers/devfreq/devfreq-event.c
> +++ b/drivers/devfreq/devfreq-event.c
> @@ -277,8 +277,8 @@ int devfreq_event_get_edev_count(struct device *dev)
>  						sizeof(u32));
>  	if (count < 0) {
>  		dev_err(dev,
> -			"failed to get the count of devfreq-event in %s node\n",
> -			dev->of_node->full_name);
> +			"failed to get the count of devfreq-event in %pOF node\n",
> +			dev->of_node);
>  		return count;
>  	}
> 

Reviewed-by: Chanwoo Choi <cw00.choi@samsung.com>

-- 
Best Regards,
Chanwoo Choi
Samsung Electronics

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

* RE: Re: [PATCH] devfreq: Convert to using %pOF instead of full_name
@ 2017-07-20  5:25       ` MyungJoo Ham
  0 siblings, 0 replies; 9+ messages in thread
From: MyungJoo Ham @ 2017-07-20  5:25 UTC (permalink / raw)
  To: Chanwoo Choi, Rob Herring
  Cc: linux-kernel, devicetree, Kyungmin Park, linux-pm

> On 2017년 07월 19일 06:42, Rob Herring wrote:

> > Now that we have a custom printf format specifier, convert users of

> > full_name to use %pOF instead. This is preparation to remove storing

> > of the full path string for each node.

> > 

> > Signed-off-by: Rob Herring <robh@kernel.org>

> > Cc: Chanwoo Choi <cw00.choi@samsung.com>

> > Cc: MyungJoo Ham <myungjoo.ham@samsung.com>

> > Cc: Kyungmin Park <kyungmin.park@samsung.com>

> > Cc: linux-pm@vger.kernel.org

> > ---

> >  drivers/devfreq/devfreq-event.c | 4 ++--

> >  1 file changed, 2 insertions(+), 2 deletions(-)

> > 

> > diff --git a/drivers/devfreq/devfreq-event.c b/drivers/devfreq/devfreq-event.c

> > index 8648b32ebc89..d67242d87744 100644

> > --- a/drivers/devfreq/devfreq-event.c

> > +++ b/drivers/devfreq/devfreq-event.c

> > @@ -277,8 +277,8 @@ int devfreq_event_get_edev_count(struct device *dev)

> >  						sizeof(u32));

> >  	if (count < 0) {

> >  		dev_err(dev,

> > -			"failed to get the count of devfreq-event in %s node\n",

> > -			dev->of_node->full_name);

> > +			"failed to get the count of devfreq-event in %pOF node\n",

> > +			dev->of_node);

> >  		return count;

> >  	}

> > 

> 

> Reviewed-by: Chanwoo Choi <cw00.choi@samsung.com>

> 



Acked-by: MyungJoo Ham <myungjoo.ham@samsung.com>

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

* RE: Re: [PATCH] devfreq: Convert to using %pOF instead of full_name
@ 2017-07-20  5:25       ` MyungJoo Ham
  0 siblings, 0 replies; 9+ messages in thread
From: MyungJoo Ham @ 2017-07-20  5:25 UTC (permalink / raw)
  To: Chanwoo Choi, Rob Herring
  Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Kyungmin Park,
	linux-pm-u79uwXL29TY76Z2rM5mHXA

> On 2017년 07월 19일 06:42, Rob Herring wrote:

> > Now that we have a custom printf format specifier, convert users of

> > full_name to use %pOF instead. This is preparation to remove storing

> > of the full path string for each node.

> > 

> > Signed-off-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>

> > Cc: Chanwoo Choi <cw00.choi-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>

> > Cc: MyungJoo Ham <myungjoo.ham-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>

> > Cc: Kyungmin Park <kyungmin.park-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>

> > Cc: linux-pm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org

> > ---

> >  drivers/devfreq/devfreq-event.c | 4 ++--

> >  1 file changed, 2 insertions(+), 2 deletions(-)

> > 

> > diff --git a/drivers/devfreq/devfreq-event.c b/drivers/devfreq/devfreq-event.c

> > index 8648b32ebc89..d67242d87744 100644

> > --- a/drivers/devfreq/devfreq-event.c

> > +++ b/drivers/devfreq/devfreq-event.c

> > @@ -277,8 +277,8 @@ int devfreq_event_get_edev_count(struct device *dev)

> >  						sizeof(u32));

> >  	if (count < 0) {

> >  		dev_err(dev,

> > -			"failed to get the count of devfreq-event in %s node\n",

> > -			dev->of_node->full_name);

> > +			"failed to get the count of devfreq-event in %pOF node\n",

> > +			dev->of_node);

> >  		return count;

> >  	}

> > 

> 

> Reviewed-by: Chanwoo Choi <cw00.choi-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>

> 



Acked-by: MyungJoo Ham <myungjoo.ham-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>






--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: Re: [PATCH] devfreq: Convert to using %pOF instead of full_name
  2017-07-20  5:25       ` MyungJoo Ham
@ 2017-08-23 18:09         ` Rob Herring
  -1 siblings, 0 replies; 9+ messages in thread
From: Rob Herring @ 2017-08-23 18:09 UTC (permalink / raw)
  To: MyungJoo Ham
  Cc: Chanwoo Choi, linux-kernel, devicetree, Kyungmin Park, linux-pm

On Thu, Jul 20, 2017 at 12:25 AM, MyungJoo Ham <myungjoo.ham@samsung.com> wrote:
>> On 2017년 07월 19일 06:42, Rob Herring wrote:
>> > Now that we have a custom printf format specifier, convert users of
>> > full_name to use %pOF instead. This is preparation to remove storing
>> > of the full path string for each node.
>> >
>> > Signed-off-by: Rob Herring <robh@kernel.org>
>> > Cc: Chanwoo Choi <cw00.choi@samsung.com>
>> > Cc: MyungJoo Ham <myungjoo.ham@samsung.com>
>> > Cc: Kyungmin Park <kyungmin.park@samsung.com>
>> > Cc: linux-pm@vger.kernel.org
>> > ---
>> >  drivers/devfreq/devfreq-event.c | 4 ++--
>> >  1 file changed, 2 insertions(+), 2 deletions(-)
>> >
>> > diff --git a/drivers/devfreq/devfreq-event.c b/drivers/devfreq/devfreq-event.c
>> > index 8648b32ebc89..d67242d87744 100644
>> > --- a/drivers/devfreq/devfreq-event.c
>> > +++ b/drivers/devfreq/devfreq-event.c
>> > @@ -277,8 +277,8 @@ int devfreq_event_get_edev_count(struct device *dev)
>> >                                             sizeof(u32));
>> >     if (count < 0) {
>> >             dev_err(dev,
>> > -                   "failed to get the count of devfreq-event in %s node\n",
>> > -                   dev->of_node->full_name);
>> > +                   "failed to get the count of devfreq-event in %pOF node\n",
>> > +                   dev->of_node);
>> >             return count;
>> >     }
>> >
>>
>> Reviewed-by: Chanwoo Choi <cw00.choi@samsung.com>
>>
>
> Acked-by: MyungJoo Ham <myungjoo.ham@samsung.com>

Please take this thru the devfreq tree.

Rob

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

* Re: Re: [PATCH] devfreq: Convert to using %pOF instead of full_name
@ 2017-08-23 18:09         ` Rob Herring
  0 siblings, 0 replies; 9+ messages in thread
From: Rob Herring @ 2017-08-23 18:09 UTC (permalink / raw)
  To: MyungJoo Ham
  Cc: Chanwoo Choi, linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Kyungmin Park,
	linux-pm-u79uwXL29TY76Z2rM5mHXA

On Thu, Jul 20, 2017 at 12:25 AM, MyungJoo Ham <myungjoo.ham-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org> wrote:
>> On 2017년 07월 19일 06:42, Rob Herring wrote:
>> > Now that we have a custom printf format specifier, convert users of
>> > full_name to use %pOF instead. This is preparation to remove storing
>> > of the full path string for each node.
>> >
>> > Signed-off-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
>> > Cc: Chanwoo Choi <cw00.choi-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
>> > Cc: MyungJoo Ham <myungjoo.ham-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
>> > Cc: Kyungmin Park <kyungmin.park-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
>> > Cc: linux-pm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
>> > ---
>> >  drivers/devfreq/devfreq-event.c | 4 ++--
>> >  1 file changed, 2 insertions(+), 2 deletions(-)
>> >
>> > diff --git a/drivers/devfreq/devfreq-event.c b/drivers/devfreq/devfreq-event.c
>> > index 8648b32ebc89..d67242d87744 100644
>> > --- a/drivers/devfreq/devfreq-event.c
>> > +++ b/drivers/devfreq/devfreq-event.c
>> > @@ -277,8 +277,8 @@ int devfreq_event_get_edev_count(struct device *dev)
>> >                                             sizeof(u32));
>> >     if (count < 0) {
>> >             dev_err(dev,
>> > -                   "failed to get the count of devfreq-event in %s node\n",
>> > -                   dev->of_node->full_name);
>> > +                   "failed to get the count of devfreq-event in %pOF node\n",
>> > +                   dev->of_node);
>> >             return count;
>> >     }
>> >
>>
>> Reviewed-by: Chanwoo Choi <cw00.choi-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
>>
>
> Acked-by: MyungJoo Ham <myungjoo.ham-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>

Please take this thru the devfreq tree.

Rob
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] devfreq: Convert to using %pOF instead of full_name
  2017-08-23 18:09         ` Rob Herring
  (?)
@ 2017-08-23 23:18         ` Chanwoo Choi
  2017-08-24 14:23           ` Rob Herring
  -1 siblings, 1 reply; 9+ messages in thread
From: Chanwoo Choi @ 2017-08-23 23:18 UTC (permalink / raw)
  To: Rob Herring, MyungJoo Ham
  Cc: linux-kernel, devicetree, Kyungmin Park, linux-pm

Hi Rob,

On 2017년 08월 24일 03:09, Rob Herring wrote:
> On Thu, Jul 20, 2017 at 12:25 AM, MyungJoo Ham <myungjoo.ham@samsung.com> wrote:
>>> On 2017년 07월 19일 06:42, Rob Herring wrote:
>>>> Now that we have a custom printf format specifier, convert users of
>>>> full_name to use %pOF instead. This is preparation to remove storing
>>>> of the full path string for each node.
>>>>
>>>> Signed-off-by: Rob Herring <robh@kernel.org>
>>>> Cc: Chanwoo Choi <cw00.choi@samsung.com>
>>>> Cc: MyungJoo Ham <myungjoo.ham@samsung.com>
>>>> Cc: Kyungmin Park <kyungmin.park@samsung.com>
>>>> Cc: linux-pm@vger.kernel.org
>>>> ---
>>>>  drivers/devfreq/devfreq-event.c | 4 ++--
>>>>  1 file changed, 2 insertions(+), 2 deletions(-)
>>>>
>>>> diff --git a/drivers/devfreq/devfreq-event.c b/drivers/devfreq/devfreq-event.c
>>>> index 8648b32ebc89..d67242d87744 100644
>>>> --- a/drivers/devfreq/devfreq-event.c
>>>> +++ b/drivers/devfreq/devfreq-event.c
>>>> @@ -277,8 +277,8 @@ int devfreq_event_get_edev_count(struct device *dev)
>>>>                                             sizeof(u32));
>>>>     if (count < 0) {
>>>>             dev_err(dev,
>>>> -                   "failed to get the count of devfreq-event in %s node\n",
>>>> -                   dev->of_node->full_name);
>>>> +                   "failed to get the count of devfreq-event in %pOF node\n",
>>>> +                   dev->of_node);
>>>>             return count;
>>>>     }
>>>>
>>>
>>> Reviewed-by: Chanwoo Choi <cw00.choi@samsung.com>
>>>
>>
>> Acked-by: MyungJoo Ham <myungjoo.ham@samsung.com>
> 
> Please take this thru the devfreq tree.

This patch was merged on devfreq tree.
https://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git/commit/?h=for-next&id=7f46535e8a2e3c3e415e55eaadcb9d9a153a5300

-- 
Best Regards,
Chanwoo Choi
Samsung Electronics

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

* Re: [PATCH] devfreq: Convert to using %pOF instead of full_name
  2017-08-23 23:18         ` Chanwoo Choi
@ 2017-08-24 14:23           ` Rob Herring
  2017-08-25  1:26             ` Chanwoo Choi
  0 siblings, 1 reply; 9+ messages in thread
From: Rob Herring @ 2017-08-24 14:23 UTC (permalink / raw)
  To: Chanwoo Choi
  Cc: MyungJoo Ham, linux-kernel, devicetree, Kyungmin Park, linux-pm

On Wed, Aug 23, 2017 at 6:18 PM, Chanwoo Choi <cw00.choi@samsung.com> wrote:
> Hi Rob,
>
> On 2017년 08월 24일 03:09, Rob Herring wrote:
>> On Thu, Jul 20, 2017 at 12:25 AM, MyungJoo Ham <myungjoo.ham@samsung.com> wrote:
>>>> On 2017년 07월 19일 06:42, Rob Herring wrote:
>>>>> Now that we have a custom printf format specifier, convert users of
>>>>> full_name to use %pOF instead. This is preparation to remove storing
>>>>> of the full path string for each node.
>>>>>
>>>>> Signed-off-by: Rob Herring <robh@kernel.org>
>>>>> Cc: Chanwoo Choi <cw00.choi@samsung.com>
>>>>> Cc: MyungJoo Ham <myungjoo.ham@samsung.com>
>>>>> Cc: Kyungmin Park <kyungmin.park@samsung.com>
>>>>> Cc: linux-pm@vger.kernel.org
>>>>> ---
>>>>>  drivers/devfreq/devfreq-event.c | 4 ++--
>>>>>  1 file changed, 2 insertions(+), 2 deletions(-)
>>>>>
>>>>> diff --git a/drivers/devfreq/devfreq-event.c b/drivers/devfreq/devfreq-event.c
>>>>> index 8648b32ebc89..d67242d87744 100644
>>>>> --- a/drivers/devfreq/devfreq-event.c
>>>>> +++ b/drivers/devfreq/devfreq-event.c
>>>>> @@ -277,8 +277,8 @@ int devfreq_event_get_edev_count(struct device *dev)
>>>>>                                             sizeof(u32));
>>>>>     if (count < 0) {
>>>>>             dev_err(dev,
>>>>> -                   "failed to get the count of devfreq-event in %s node\n",
>>>>> -                   dev->of_node->full_name);
>>>>> +                   "failed to get the count of devfreq-event in %pOF node\n",
>>>>> +                   dev->of_node);
>>>>>             return count;
>>>>>     }
>>>>>
>>>>
>>>> Reviewed-by: Chanwoo Choi <cw00.choi@samsung.com>
>>>>
>>>
>>> Acked-by: MyungJoo Ham <myungjoo.ham@samsung.com>
>>
>> Please take this thru the devfreq tree.
>
> This patch was merged on devfreq tree.
> https://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git/commit/?h=for-next&id=7f46535e8a2e3c3e415e55eaadcb9d9a153a5300

Okay, it's not showing up in linux-next which is why I asked.

Rob

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

* Re: [PATCH] devfreq: Convert to using %pOF instead of full_name
  2017-08-24 14:23           ` Rob Herring
@ 2017-08-25  1:26             ` Chanwoo Choi
  0 siblings, 0 replies; 9+ messages in thread
From: Chanwoo Choi @ 2017-08-25  1:26 UTC (permalink / raw)
  To: Rob Herring
  Cc: MyungJoo Ham, linux-kernel, devicetree, Kyungmin Park, linux-pm

On 2017년 08월 24일 23:23, Rob Herring wrote:
> On Wed, Aug 23, 2017 at 6:18 PM, Chanwoo Choi <cw00.choi@samsung.com> wrote:
>> Hi Rob,
>>
>> On 2017년 08월 24일 03:09, Rob Herring wrote:
>>> On Thu, Jul 20, 2017 at 12:25 AM, MyungJoo Ham <myungjoo.ham@samsung.com> wrote:
>>>>> On 2017년 07월 19일 06:42, Rob Herring wrote:
>>>>>> Now that we have a custom printf format specifier, convert users of
>>>>>> full_name to use %pOF instead. This is preparation to remove storing
>>>>>> of the full path string for each node.
>>>>>>
>>>>>> Signed-off-by: Rob Herring <robh@kernel.org>
>>>>>> Cc: Chanwoo Choi <cw00.choi@samsung.com>
>>>>>> Cc: MyungJoo Ham <myungjoo.ham@samsung.com>
>>>>>> Cc: Kyungmin Park <kyungmin.park@samsung.com>
>>>>>> Cc: linux-pm@vger.kernel.org
>>>>>> ---
>>>>>>  drivers/devfreq/devfreq-event.c | 4 ++--
>>>>>>  1 file changed, 2 insertions(+), 2 deletions(-)
>>>>>>
>>>>>> diff --git a/drivers/devfreq/devfreq-event.c b/drivers/devfreq/devfreq-event.c
>>>>>> index 8648b32ebc89..d67242d87744 100644
>>>>>> --- a/drivers/devfreq/devfreq-event.c
>>>>>> +++ b/drivers/devfreq/devfreq-event.c
>>>>>> @@ -277,8 +277,8 @@ int devfreq_event_get_edev_count(struct device *dev)
>>>>>>                                             sizeof(u32));
>>>>>>     if (count < 0) {
>>>>>>             dev_err(dev,
>>>>>> -                   "failed to get the count of devfreq-event in %s node\n",
>>>>>> -                   dev->of_node->full_name);
>>>>>> +                   "failed to get the count of devfreq-event in %pOF node\n",
>>>>>> +                   dev->of_node);
>>>>>>             return count;
>>>>>>     }
>>>>>>
>>>>>
>>>>> Reviewed-by: Chanwoo Choi <cw00.choi@samsung.com>
>>>>>
>>>>
>>>> Acked-by: MyungJoo Ham <myungjoo.ham@samsung.com>
>>>
>>> Please take this thru the devfreq tree.
>>
>> This patch was merged on devfreq tree.
>> https://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git/commit/?h=for-next&id=7f46535e8a2e3c3e415e55eaadcb9d9a153a5300
> 
> Okay, it's not showing up in linux-next which is why I asked.

As I knew, devfreq maintainer has not yet asked
the inclusion of devfreq tree in linux-next.

To Myungjoo,
You can ask to 'Stephen Rothwell <sfr@canb.auug.org.au>'
for the inclusion of devfreq tree in linux-next.

git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git for-next

-- 
Best Regards,
Chanwoo Choi
Samsung Electronics

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

end of thread, other threads:[~2017-08-25  1:26 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <CGME20170718214411epcas2p43fc1475c80245889737ba9e731497e38@epcas2p4.samsung.com>
2017-07-18 21:42 ` [PATCH] devfreq: Convert to using %pOF instead of full_name Rob Herring
2017-07-19  1:38   ` Chanwoo Choi
     [not found]   ` <CGME20170718214411epcas2p43fc1475c80245889737ba9e731497e38@epcms1p2>
2017-07-20  5:25     ` MyungJoo Ham
2017-07-20  5:25       ` MyungJoo Ham
2017-08-23 18:09       ` Rob Herring
2017-08-23 18:09         ` Rob Herring
2017-08-23 23:18         ` Chanwoo Choi
2017-08-24 14:23           ` Rob Herring
2017-08-25  1:26             ` Chanwoo Choi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.