Blob Blame History Raw
From: Ahmad Fatoum <a.fatoum@pengutronix.de>
Date: Sat, 21 May 2022 22:10:50 +0200
Subject: Bluetooth: hci_sync: use hci_skb_event() helper
Patch-mainline: v5.19-rc1
Git-commit: edcb185fa9c4f8fa1301f032fb503d2597a92b1e
References: jsc#PED-1407

This instance is the only opencoded version of the macro, so have it
follow suit.

Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Acked-by: Lee, Chun-Yi <jlee@suse.com>
---
 net/bluetooth/hci_request.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/net/bluetooth/hci_request.c
+++ b/net/bluetooth/hci_request.c
@@ -261,7 +261,7 @@ void hci_req_add_ev(struct hci_request *
 	if (skb_queue_empty(&req->cmd_q))
 		bt_cb(skb)->hci.req_flags |= HCI_REQ_START;
 
-	bt_cb(skb)->hci.req_event = event;
+	hci_skb_event(skb) = event;
 
 	skb_queue_tail(&req->cmd_q, skb);
 }