All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] audio: Fix mtu input order
@ 2015-10-23 16:14 Chan-yeol Park
  2015-10-23 16:24 ` Johan Hedberg
  0 siblings, 1 reply; 2+ messages in thread
From: Chan-yeol Park @ 2015-10-23 16:14 UTC (permalink / raw)
  To: linux-bluetooth

This patch fixes imtu,omtu input order in avdtp_stream_set_transport().
---
 profiles/audio/a2dp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/audio/a2dp.c b/profiles/audio/a2dp.c
index 9121dab..b0fea7c 100644
--- a/profiles/audio/a2dp.c
+++ b/profiles/audio/a2dp.c
@@ -1457,7 +1457,7 @@ static void transport_cb(GIOChannel *io, GError *err, gpointer user_data)
 
 	if (!avdtp_stream_set_transport(setup->stream,
 					g_io_channel_unix_get_fd(io),
-					omtu, imtu))
+					imtu, omtu))
 		goto drop;
 
 	g_io_channel_set_close_on_unref(io, FALSE);
-- 
2.5.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH 1/1] audio: Fix mtu input order
  2015-10-23 16:14 [PATCH 1/1] audio: Fix mtu input order Chan-yeol Park
@ 2015-10-23 16:24 ` Johan Hedberg
  0 siblings, 0 replies; 2+ messages in thread
From: Johan Hedberg @ 2015-10-23 16:24 UTC (permalink / raw)
  To: Chan-yeol Park; +Cc: linux-bluetooth

Hi Chan-yeol,

On Sat, Oct 24, 2015, Chan-yeol Park wrote:
> This patch fixes imtu,omtu input order in avdtp_stream_set_transport().
> ---
>  profiles/audio/a2dp.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied. Thanks!

Johan

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-10-23 16:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-23 16:14 [PATCH 1/1] audio: Fix mtu input order Chan-yeol Park
2015-10-23 16:24 ` Johan Hedberg

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.