From: Minkyung Jo Date: Wed, 28 Sep 2016 04:17:16 +0000 (+0900) Subject: Add Ford carkit on except START_TIMEOUT list. X-Git-Tag: submit/tizen/20161205.050350~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F03%2F100703%2F1;p=platform%2Fupstream%2Fbluez.git Add Ford carkit on except START_TIMEOUT list. [Problem] Gear make a noise when carkit initiate connection. [Cause & Measure] Pulseaudio acquire is delayed, because request of AVDTP_OPEN from cakir didn't come. [Checking Method] Gear - Ford carkit connection -> carkit power off -> power on Change-Id: I95129e935bb120ec9abb150368af3e8c82c07c1e Signed-off-by: Injun Yang --- diff --git a/profiles/audio/avdtp.c b/profiles/audio/avdtp.c index fd194fd..df54a41 100644 --- a/profiles/audio/avdtp.c +++ b/profiles/audio/avdtp.c @@ -3756,7 +3756,8 @@ int avdtp_start(struct avdtp *session, struct avdtp_stream *stream) * when we add timer for 1 second so idle may trigger callback after 1.2 sec or * 1.5 sec. So, don't timer for this headset.*/ if (!strncasecmp(address, "10:92:66", 8) || - !strncasecmp(address, "A8:9F:BA", 8)) { + !strncasecmp(address, "A8:9F:BA", 8) || + !strncasecmp(address, "00:26:B4", 8)) { start_timeout(stream); return 0; }