Received: by 2002:a25:6193:0:0:0:0:0 with SMTP id v141csp1329890ybb; Wed, 8 Apr 2020 23:08:40 -0700 (PDT) X-Google-Smtp-Source: APiQypINpWYkGgqy/AE3726kIYf8yprUg1XTHSdTW4cwtITaOCAnpqGiLucYP+LhohHr7mM2AR6L X-Received: by 2002:aca:cc41:: with SMTP id c62mr5309982oig.58.1586412520787; Wed, 08 Apr 2020 23:08:40 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1586412520; cv=none; d=google.com; s=arc-20160816; b=H4fQ49FvTn5c4UnH2Fy0a6kuiMLscGp/n6ZHHd/IWw48eECLp1RYjE96mYwVrRaeqf hzJLWe+Bu1/bVGaCeO6ui2XxrklnjDzZjf5kedGkfgZg/HXaQlojjyRjkZSZ61JwcvHv lUJpEO2h7qSUBIFfw84zu/VQgHDO3cKZWbLSZ7x+4JnGzQF/NuYlBwj7qQE+C+PGdfAk nkBLKzGkRYiJS5V83fPXxol7aVDtSS+2IxPITGBN9cpqlIp0bmnYH91rRxiRqWtVv3y0 6w7oui17MwFJUQjwKkA44leEF4W4wSckasAhGhkfhgmTD6sBFafmIxcjWdp/cujGQlhh IPRw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:to:from; bh=SgYGm3Wdj+5z5W+zP3x/qD8ybzbmW9XQE5rHnmlwdu8=; b=sl+7Mep6sxez43m2lqBAWkBwpSsExkcTx3OHS+VvH159G9YNXmc4khZSJ/ncZ8MsyI z/IEMZ31rhawi+o6UUsPUEvsD/6PEmU3oAZCy9QqvoqpFOum/WHSYV5sKlIlcKJ3GJnG UAGPUlYsz+24wl1vkqoeLmwKnrXeUFpVWU0zjBbWUg8F230H426OV9Qu9mMVtsTuE5wC rsbZVXMbY1pLj5NQcrSEpSG51ZdMJlYtW51o1illoxFIFDk749FdX1awl3hSSjjxzww2 zQUFYvTpzezXsWMvFLz3/H8x0eAZ/3r7tho1OoagjK+zx7h6Fa9D5b44naoqIc1CwU3F qilQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-bluetooth-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-bluetooth-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id e25si3904900oti.274.2020.04.08.23.08.26; Wed, 08 Apr 2020 23:08:40 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-bluetooth-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-bluetooth-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-bluetooth-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726552AbgDIGF4 (ORCPT + 99 others); Thu, 9 Apr 2020 02:05:56 -0400 Received: from coyote.holtmann.net ([212.227.132.17]:39505 "EHLO mail.holtmann.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725997AbgDIGFz (ORCPT ); Thu, 9 Apr 2020 02:05:55 -0400 Received: from localhost.localdomain (p4FEFC5A7.dip0.t-ipconnect.de [79.239.197.167]) by mail.holtmann.org (Postfix) with ESMTPSA id 9872DCECF3 for ; Thu, 9 Apr 2020 08:15:29 +0200 (CEST) From: Marcel Holtmann To: linux-bluetooth@vger.kernel.org Subject: [PATCH 1/4] Bluetooth: Sort list of LE features constants Date: Thu, 9 Apr 2020 08:05:47 +0200 Message-Id: X-Mailer: git-send-email 2.25.2 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-bluetooth-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-bluetooth@vger.kernel.org The list of LE features constants has gotten a bit confused. It lost the order and gained duplicated. Clean this up. Signed-off-by: Marcel Holtmann --- include/net/bluetooth/hci.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h index f4e8e2a0b7c1..ff42d05b3e72 100644 --- a/include/net/bluetooth/hci.h +++ b/include/net/bluetooth/hci.h @@ -460,12 +460,10 @@ enum { #define HCI_LE_SLAVE_FEATURES 0x08 #define HCI_LE_PING 0x10 #define HCI_LE_DATA_LEN_EXT 0x20 -#define HCI_LE_PHY_2M 0x01 -#define HCI_LE_PHY_CODED 0x08 -#define HCI_LE_EXT_ADV 0x10 #define HCI_LE_EXT_SCAN_POLICY 0x80 #define HCI_LE_PHY_2M 0x01 #define HCI_LE_PHY_CODED 0x08 +#define HCI_LE_EXT_ADV 0x10 #define HCI_LE_CHAN_SEL_ALG2 0x40 #define HCI_LE_CIS_MASTER 0x10 #define HCI_LE_CIS_SLAVE 0x20 -- 2.25.2