Message ID | 1462291015-1919-5-git-send-email-fcooper@ti.com (mailing list archive) |
---|---|
State | Not Applicable, archived |
Headers | show |
On Tue, May 03, 2016 at 10:56:50AM -0500, Franklin S Cooper Jr wrote: > Replace unit address from 0 to the proper physical address. Also insure > that the unit address matches the reg property address. > > Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com> > --- > Documentation/devicetree/bindings/pwm/pwm-tiecap.txt | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) Acked-by: Rob Herring <robh@kernel.org> > > diff --git a/Documentation/devicetree/bindings/pwm/pwm-tiecap.txt b/Documentation/devicetree/bindings/pwm/pwm-tiecap.txt > index 788da6c..0d47354 100644 > --- a/Documentation/devicetree/bindings/pwm/pwm-tiecap.txt > +++ b/Documentation/devicetree/bindings/pwm/pwm-tiecap.txt > @@ -16,22 +16,22 @@ Optional properties: > > Example: > > -ecap0: ecap@0 { /* ECAP on am33xx */ > +ecap0: ecap@48300100 { /* ECAP on am33xx */ > compatible = "ti,am33xx-ecap"; > #pwm-cells = <3>; > reg = <0x48300100 0x80>; > ti,hwmods = "ecap0"; > }; > > -ecap0: ecap@0 { /* ECAP on am4372 */ > +ecap0: ecap@48300100 { /* ECAP on am4372 */ > compatible = "ti,am4372-ecap", "ti,am33xx-ecap"; > #pwm-cells = <3>; > reg = <0x48300100 0x80>; > ti,hwmods = "ecap0"; > }; > > -ecap0: ecap@0 { /* ECAP on da850 */ > +ecap0: ecap@1f06000 { /* ECAP on da850 */ > compatible = "ti,da850-ecap", "ti,am33xx-ecap"; > #pwm-cells = <3>; > - reg = <0x306000 0x80>; > + reg = <0x1f06000 0x80>; > }; > -- > 2.7.0 > -- To unsubscribe from this list: send the line "unsubscribe linux-clk" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Tue, May 03, 2016 at 10:56:50AM -0500, Franklin S Cooper Jr wrote: > Replace unit address from 0 to the proper physical address. Also insure > that the unit address matches the reg property address. > > Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com> > --- > Documentation/devicetree/bindings/pwm/pwm-tiecap.txt | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) I applied this long ago but never let you know: Applied, thanks. Thierry
On Mon, Jul 11, 2016 at 11:56:23AM +0200, Thierry Reding wrote: > On Tue, May 03, 2016 at 10:56:50AM -0500, Franklin S Cooper Jr wrote: > > Replace unit address from 0 to the proper physical address. Also insure > > that the unit address matches the reg property address. > > > > Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com> > > --- > > Documentation/devicetree/bindings/pwm/pwm-tiecap.txt | 8 ++++---- > > 1 file changed, 4 insertions(+), 4 deletions(-) > > I applied this long ago but never let you know: Applied, thanks. Actually I didn't. And it seems the reason is that it doesn't apply cleanly. For some reason my tree doesn't have an entry for the ecap example on am437x. Am I missing a patch? Can you resend whatever is not in linux-next yet? Thierry
On Mon, Jul 11, 2016 at 12:06:29PM +0200, Thierry Reding wrote: > On Mon, Jul 11, 2016 at 11:56:23AM +0200, Thierry Reding wrote: > > On Tue, May 03, 2016 at 10:56:50AM -0500, Franklin S Cooper Jr wrote: > > > Replace unit address from 0 to the proper physical address. Also insure > > > that the unit address matches the reg property address. > > > > > > Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com> > > > --- > > > Documentation/devicetree/bindings/pwm/pwm-tiecap.txt | 8 ++++---- > > > 1 file changed, 4 insertions(+), 4 deletions(-) > > > > I applied this long ago but never let you know: Applied, thanks. > > Actually I didn't. And it seems the reason is that it doesn't apply > cleanly. For some reason my tree doesn't have an entry for the ecap > example on am437x. Am I missing a patch? Can you resend whatever is > not in linux-next yet? Oh, nevermind my blabbering, it took me too long to realize that this is the series that Tony had picked up for the most part, and I hadn't properly marked it done in patchwork. I'll go get some coffee now. Thierry
diff --git a/Documentation/devicetree/bindings/pwm/pwm-tiecap.txt b/Documentation/devicetree/bindings/pwm/pwm-tiecap.txt index 788da6c..0d47354 100644 --- a/Documentation/devicetree/bindings/pwm/pwm-tiecap.txt +++ b/Documentation/devicetree/bindings/pwm/pwm-tiecap.txt @@ -16,22 +16,22 @@ Optional properties: Example: -ecap0: ecap@0 { /* ECAP on am33xx */ +ecap0: ecap@48300100 { /* ECAP on am33xx */ compatible = "ti,am33xx-ecap"; #pwm-cells = <3>; reg = <0x48300100 0x80>; ti,hwmods = "ecap0"; }; -ecap0: ecap@0 { /* ECAP on am4372 */ +ecap0: ecap@48300100 { /* ECAP on am4372 */ compatible = "ti,am4372-ecap", "ti,am33xx-ecap"; #pwm-cells = <3>; reg = <0x48300100 0x80>; ti,hwmods = "ecap0"; }; -ecap0: ecap@0 { /* ECAP on da850 */ +ecap0: ecap@1f06000 { /* ECAP on da850 */ compatible = "ti,da850-ecap", "ti,am33xx-ecap"; #pwm-cells = <3>; - reg = <0x306000 0x80>; + reg = <0x1f06000 0x80>; };
Replace unit address from 0 to the proper physical address. Also insure that the unit address matches the reg property address. Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com> --- Documentation/devicetree/bindings/pwm/pwm-tiecap.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)