diff mbox

ARM: OMAP2+: Fix WL1283 Bluetooth Baud Rate

Message ID 1483465068-3076-1-git-send-email-aford173@gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

Adam Ford Jan. 3, 2017, 5:37 p.m. UTC
From: Adam Ford <aford173@gmail.com>

Commit 485fa1261f78 ("ARM: OMAP2+: LogicPD Torpedo + Wireless: Add Bluetooth")
set the wrong baud rate for the UART. The Baud rate was 300,000 and it should
be 3,000,000 for WL1283.

Signed-off-by: Adam Ford <aford173@gmail.com>

Comments

Tony Lindgren Jan. 5, 2017, 5:29 p.m. UTC | #1
* aford173@gmail.com <aford173@gmail.com> [170103 09:42]:
> From: Adam Ford <aford173@gmail.com>
> 
> Commit 485fa1261f78 ("ARM: OMAP2+: LogicPD Torpedo + Wireless: Add Bluetooth")
> set the wrong baud rate for the UART. The Baud rate was 300,000 and it should
> be 3,000,000 for WL1283.

Applying into omap-for-v4.11/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
Adam Ford Jan. 16, 2017, 3:26 p.m. UTC | #2
On Thu, Jan 5, 2017 at 11:29 AM, Tony Lindgren <tony@atomide.com> wrote:
> * aford173@gmail.com <aford173@gmail.com> [170103 09:42]:
>> From: Adam Ford <aford173@gmail.com>
>>
>> Commit 485fa1261f78 ("ARM: OMAP2+: LogicPD Torpedo + Wireless: Add Bluetooth")
>> set the wrong baud rate for the UART. The Baud rate was 300,000 and it should
>> be 3,000,000 for WL1283.
>
> Applying into omap-for-v4.11/fixes thanks.

Since 4.10 is still in an RC stage, and this is a bug fix, is there
any way we can apply it to 4.10?  Once committed, I was going to
request with the stable mailing list to back-apply these to 4.9.

>
> 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
Tony Lindgren Jan. 16, 2017, 5:35 p.m. UTC | #3
* Adam Ford <aford173@gmail.com> [170116 07:27]:
> On Thu, Jan 5, 2017 at 11:29 AM, Tony Lindgren <tony@atomide.com> wrote:
> > * aford173@gmail.com <aford173@gmail.com> [170103 09:42]:
> >> From: Adam Ford <aford173@gmail.com>
> >>
> >> Commit 485fa1261f78 ("ARM: OMAP2+: LogicPD Torpedo + Wireless: Add Bluetooth")
> >> set the wrong baud rate for the UART. The Baud rate was 300,000 and it should
> >> be 3,000,000 for WL1283.
> >
> > Applying into omap-for-v4.11/fixes thanks.
> 
> Since 4.10 is still in an RC stage, and this is a bug fix, is there
> any way we can apply it to 4.10?  Once committed, I was going to
> request with the stable mailing list to back-apply these to 4.9.

Yes sorry that's a typo above, I do have this in my omap-for-v4.10/fixes,
not omap-for-v4.11/fixes.

Hoping to send a pull request for that today or on Tuesday.

Regards,

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 mbox

Patch

diff --git a/arch/arm/mach-omap2/pdata-quirks.c b/arch/arm/mach-omap2/pdata-quirks.c
index 05e20aa..088a080 100644
--- a/arch/arm/mach-omap2/pdata-quirks.c
+++ b/arch/arm/mach-omap2/pdata-quirks.c
@@ -162,7 +162,7 @@  static struct ti_st_plat_data wilink7_pdata = {
 	.nshutdown_gpio = 162,
 	.dev_name = "/dev/ttyO1",
 	.flow_cntrl = 1,
-	.baud_rate = 300000,
+	.baud_rate = 3000000,
 };
 
 static struct platform_device wl128x_device = {