diff options
author | Adam Ford <aford173@gmail.com> | 2017-01-03 11:37:48 -0600 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-12-05 11:24:32 +0100 |
commit | e18a963b36a001b0067f9091b4ea23aa152af341 (patch) | |
tree | 61972399cf86b078465e1bb2e79774a00b6f63cd /arch | |
parent | dc554abdaee496a8dd0dbafec7abb83328a575ae (diff) | |
download | linux-stable-e18a963b36a001b0067f9091b4ea23aa152af341.tar.gz linux-stable-e18a963b36a001b0067f9091b4ea23aa152af341.tar.bz2 linux-stable-e18a963b36a001b0067f9091b4ea23aa152af341.zip |
ARM: OMAP2+: Fix WL1283 Bluetooth Baud Rate
commit a3ac350793d90d1da631c8beeee9352387974ed5 upstream.
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>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-omap2/pdata-quirks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/pdata-quirks.c b/arch/arm/mach-omap2/pdata-quirks.c index 770216baa737..da310bb779b9 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 = { |