Message ID | 20180716071048.GA23110@amd (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Hi, On Mon, Jul 16, 2018 at 09:10:48AM +0200, Pavel Machek wrote: > pwm node should not be under gpio6 node in the device tree. > > This fixes detection of the pwm on Droid 4. > > Signed-off-by: Pavel Machek <pavel@ucw.cz> Reviewed-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk> -- Sebastian > diff --git a/arch/arm/boot/dts/omap4-droid4-xt894.dts b/arch/arm/boot/dts/omap4-droid4-xt894.dts > index 45305e8..c27fc87 100644 > --- a/arch/arm/boot/dts/omap4-droid4-xt894.dts > +++ b/arch/arm/boot/dts/omap4-droid4-xt894.dts > @@ -159,13 +159,7 @@ > > dais = <&mcbsp2_port>, <&mcbsp3_port>; > }; > -}; > - > -&dss { > - status = "okay"; > -}; > > -&gpio6 { > pwm8: dmtimer-pwm-8 { > pinctrl-names = "default"; > pinctrl-0 = <&vibrator_direction_pin>; > @@ -192,7 +186,10 @@ > pwm-names = "enable", "direction"; > direction-duty-cycle-ns = <10000000>; > }; > +}; > > +&dss { > + status = "okay"; > }; > > &dsi1 { > > > > -- > (english) http://www.livejournal.com/~pavelmachek > (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
* Sebastian Reichel <sre@kernel.org> [180716 10:14]: > Hi, > > On Mon, Jul 16, 2018 at 09:10:48AM +0200, Pavel Machek wrote: > > pwm node should not be under gpio6 node in the device tree. > > > > This fixes detection of the pwm on Droid 4. > > > > Signed-off-by: Pavel Machek <pavel@ucw.cz> > > Reviewed-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk> Applying into omap-for-v4.18/fixes thanks. Tony -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/arch/arm/boot/dts/omap4-droid4-xt894.dts b/arch/arm/boot/dts/omap4-droid4-xt894.dts index 45305e8..c27fc87 100644 --- a/arch/arm/boot/dts/omap4-droid4-xt894.dts +++ b/arch/arm/boot/dts/omap4-droid4-xt894.dts @@ -159,13 +159,7 @@ dais = <&mcbsp2_port>, <&mcbsp3_port>; }; -}; - -&dss { - status = "okay"; -}; -&gpio6 { pwm8: dmtimer-pwm-8 { pinctrl-names = "default"; pinctrl-0 = <&vibrator_direction_pin>; @@ -192,7 +186,10 @@ pwm-names = "enable", "direction"; direction-duty-cycle-ns = <10000000>; }; +}; +&dss { + status = "okay"; }; &dsi1 {
pwm node should not be under gpio6 node in the device tree. This fixes detection of the pwm on Droid 4. Signed-off-by: Pavel Machek <pavel@ucw.cz>