From: Zijun Hu Date: Mon, 22 Apr 2024 14:51:50 +0000 (+0800) Subject: Bluetooth: Remove 3 repeated macro definitions X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=94c603c28e59091f698efc5caaddc93c365455ab;p=linux.git Bluetooth: Remove 3 repeated macro definitions Macros HCI_REQ_DONE, HCI_REQ_PEND and HCI_REQ_CANCELED are repeatedly defined twice with hci_request.h, so remove a copy of definition. Signed-off-by: Zijun Hu Signed-off-by: Luiz Augusto von Dentz --- diff --git a/net/bluetooth/hci_request.h b/net/bluetooth/hci_request.h index 0be75cf0efed8..c91f2838f5424 100644 --- a/net/bluetooth/hci_request.h +++ b/net/bluetooth/hci_request.h @@ -29,10 +29,6 @@ #define hci_req_sync_lock(hdev) mutex_lock(&hdev->req_lock) #define hci_req_sync_unlock(hdev) mutex_unlock(&hdev->req_lock) -#define HCI_REQ_DONE 0 -#define HCI_REQ_PEND 1 -#define HCI_REQ_CANCELED 2 - struct hci_request { struct hci_dev *hdev; struct sk_buff_head cmd_q;