From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3AA05C4167B for ; Mon, 12 Dec 2022 13:44:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232983AbiLLNn6 (ORCPT ); Mon, 12 Dec 2022 08:43:58 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43002 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232984AbiLLNnl (ORCPT ); Mon, 12 Dec 2022 08:43:41 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 951592BEB for ; Mon, 12 Dec 2022 05:42:57 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 346CE61072 for ; Mon, 12 Dec 2022 13:42:57 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B2135C433EF; Mon, 12 Dec 2022 13:42:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1670852576; bh=FL0FOTJJ/qrVP1nyrQUDU0ioCJE7D//1YdPTBN3xRAU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=OpBVnqavfzf6jUhpRyuIzFBdZo6sSyAzwYK7/vBZJzxHfbXBELDfUfBvuUE4R2Bcn gu2v3OVonKQEBRT80lXK7xoAvMTAljzo/ejG3zWshpEOskVkfXXKgV5b/K+5wEyzVu sdNyALJiF6Hpu3qEij0aKwuCQmlRJ9UTEka5xu7o= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Chethan T N , Kiran K , Luiz Augusto von Dentz , Sasha Levin Subject: [PATCH 6.0 108/157] Bluetooth: Remove codec id field in vendor codec definition Date: Mon, 12 Dec 2022 14:17:36 +0100 Message-Id: <20221212130939.183507671@linuxfoundation.org> X-Mailer: git-send-email 2.38.1 In-Reply-To: <20221212130934.337225088@linuxfoundation.org> References: <20221212130934.337225088@linuxfoundation.org> User-Agent: quilt/0.67 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Chethan T N [ Upstream commit 93df7d56f15e217009323c0fbb5213ab7a14520b ] As per the specfication vendor codec id is defined. BLUETOOTH CORE SPECIFICATION Version 5.3 | Vol 4, Part E page 2127 Fixes: 9ae664028a9e ("Bluetooth: Add support for Read Local Supported Codecs V2") Signed-off-by: Chethan T N Signed-off-by: Kiran K Signed-off-by: Luiz Augusto von Dentz Signed-off-by: Sasha Levin --- include/net/bluetooth/hci.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h index a3c7dcfa0a05..4518c63e9d17 100644 --- a/include/net/bluetooth/hci.h +++ b/include/net/bluetooth/hci.h @@ -1431,7 +1431,6 @@ struct hci_std_codecs_v2 { } __packed; struct hci_vnd_codec_v2 { - __u8 id; __le16 cid; __le16 vid; __u8 transport; -- 2.35.1