From 3d6cbf3602583f6030a013f3ca6e00c0a2ff843f Mon Sep 17 00:00:00 2001 From: "charles.park" Date: Tue, 21 Feb 2017 17:35:02 +0900 Subject: [PATCH] ODROID-XU4 : bluetooth 8723DU compile error fix. Change-Id: Ia44ef12c7ba99535942319edfcc565ebe86996e7 --- drivers/bluetooth/rtk_coex.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/drivers/bluetooth/rtk_coex.c b/drivers/bluetooth/rtk_coex.c index 8b77ba610f95..f54dc5b73f6b 100755 --- a/drivers/bluetooth/rtk_coex.c +++ b/drivers/bluetooth/rtk_coex.c @@ -449,7 +449,11 @@ static void rtk_vendor_cmd_to_fw(uint16_t opcode, uint8_t parameter_len, #if HCI_VERSION_CODE < KERNEL_VERSION(4, 4, 0) bt_cb(skb)->req.start = true; #else - bt_cb(skb)->hci.req_start = true; + #if 0 + bt_cb(skb)->hci.req_start = true; + #else + bt_cb(skb)->hci.req_flags |= HCI_REQ_START; + #endif #endif #endif RTKBT_DBG("%s: opcode 0x%x", __func__, opcode);