Re: [PATCH 1/3] of: overlay_adjust_phandles() - do not modify const field

2017-04-24 Thread Frank Rowand
On 04/24/17 14:40, Rob Herring wrote: > +Ben H > > On Mon, Apr 24, 2017 at 1:54 PM, Frank Rowand wrote: >> On 04/24/17 09:56, Rob Herring wrote: >>> On Mon, Apr 24, 2017 at 12:20 AM, wrote: From: Frank Rowand When adjusting overlay phandles to apply to the live device tree, can

Re: [PATCH 1/3] of: overlay_adjust_phandles() - do not modify const field

2017-04-24 Thread Rob Herring
+Ben H On Mon, Apr 24, 2017 at 1:54 PM, Frank Rowand wrote: > On 04/24/17 09:56, Rob Herring wrote: >> On Mon, Apr 24, 2017 at 12:20 AM, wrote: >>> From: Frank Rowand >>> >>> When adjusting overlay phandles to apply to the live device tree, can >>> not modify the property value because it is t

Re: [PATCH 1/3] of: overlay_adjust_phandles() - do not modify const field

2017-04-24 Thread Frank Rowand
On 04/24/17 09:56, Rob Herring wrote: > On Mon, Apr 24, 2017 at 12:20 AM, wrote: >> From: Frank Rowand >> >> When adjusting overlay phandles to apply to the live device tree, can >> not modify the property value because it is type const. >> >> This is to resolve the issue found by Stephen Boyd [

Re: [PATCH 1/3] of: overlay_adjust_phandles() - do not modify const field

2017-04-24 Thread Rob Herring
On Mon, Apr 24, 2017 at 12:20 AM, wrote: > From: Frank Rowand > > When adjusting overlay phandles to apply to the live device tree, can > not modify the property value because it is type const. > > This is to resolve the issue found by Stephen Boyd [1] when he changed > the type of struct proper

[PATCH 1/3] of: overlay_adjust_phandles() - do not modify const field

2017-04-23 Thread frowand . list
From: Frank Rowand When adjusting overlay phandles to apply to the live device tree, can not modify the property value because it is type const. This is to resolve the issue found by Stephen Boyd [1] when he changed the type of struct property.value from void * to const void *. As a result of t