From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> The code was setting TRUE ignoring what the caller set. --- android/avdtp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/avdtp.c b/android/avdtp.c index 3cf390f..473e02b 100644 --- a/android/avdtp.c +++ b/android/avdtp.c @@ -3280,7 +3280,7 @@ struct avdtp_local_sep *avdtp_register_sep(uint8_t type, uint8_t media_type, sep->ind = ind; sep->cfm = cfm; sep->user_data = user_data; - sep->delay_reporting = TRUE; + sep->delay_reporting = delay_reporting; DBG("SEP %p registered: type:%d codec:%d seid:%d", sep, sep->info.type, sep->codec, sep->info.seid); -- 1.8.4.2 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html