From nobody Wed May 1 03:37:15 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) client-ip=66.175.222.12; envelope-from=bounce+27952+46366+1787277+3901457@groups.io; helo=web01.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+46366+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=intel.com ARC-Seal: i=1; a=rsa-sha256; t=1566843432; cv=none; d=zoho.com; s=zohoarc; b=HMv1PS1o/SxxV/o0k2+7pbnX4G3fYWVzwhZLUXH/TCNUpiCjdeOzXeZGxKJgy83hwWyFIugx5swvxGLZrMI/M6J0AKIg/iDwWnWuqOZlse7F9u161pMglwust++awpSvxijrMnnEfIV9lAThBt3CIqZpMgyrh4f16+3WvwB09ZQ= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1566843432; h=Content-Transfer-Encoding:Cc:Date:From:List-Id:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:Sender:Subject:To:ARC-Authentication-Results; bh=phYLqzWLpPa37SZI8BJ9hQl4IniHfIIk3+T1dA2yBWI=; b=d3oj/D40QOf4EI55+Ojw6Vsbl3BOVLR/yp6Eo4hQ7wBIkmS2faKN5Aaoajy8p3682VnSnCuur+l55qPbm9FWSaNfQ5NwFg6OAD3lA/WeU+XnZXwX6g79lNV8dqmLAN1iQOugJHN3UVKCItP/yQtKsqC2HkNuJQtQFMWfmEhqyak= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+46366+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) header.from= Received: from web01.groups.io (web01.groups.io [66.175.222.12]) by mx.zohomail.com with SMTPS id 1566843432280462.298605695573; Mon, 26 Aug 2019 11:17:12 -0700 (PDT) Return-Path: X-Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by groups.io with SMTP; Mon, 26 Aug 2019 11:17:11 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False X-Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 26 Aug 2019 11:17:10 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,433,1559545200"; d="scan'208";a="197107934" X-Received: from ray-dev.ccr.corp.intel.com ([10.239.9.9]) by fmsmga001.fm.intel.com with ESMTP; 26 Aug 2019 11:17:09 -0700 From: "Ni, Ray" To: devel@edk2.groups.io Cc: Michael D Kinney , Liming Gao Subject: [edk2-devel] [PATCH] [edk2-stable201908] MdePkg/BluetoothLeConfig.h: Add type EfiBluetoothSmpPeerAddressList Date: Tue, 27 Aug 2019 02:16:19 +0800 Message-Id: <20190826181619.165188-1-ray.ni@intel.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,ray.ni@intel.com Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1566843431; bh=xxu1aSNWl90/mww3t7idukl6jkJGF9OsLsKuJGBk9z8=; h=Cc:Date:From:Reply-To:Subject:To; b=Ap+4W0UqMO35aFu8rRXXuuNOnCpFAU97jLHtmXuU7GQBsfOlKA4UxzXQl3lcpOtRmbW 5mNHSAjJya1IwGfxrD2KicCTWXoVjy9L2nxAEWUSoOikSr2+1VW76tarqFVqSOjJCjhZS lTKOPihwI+n22W/Nut0R7/6MYAIbO4z/wx8= X-ZohoMail-DKIM: pass (identity @groups.io) Content-Type: text/plain; charset="utf-8" To support auto-connection, EFI_BLUETOOTH_LE_SMP_DATA_TYPE needs to add a new data type EfiBluetoothSmpPeerAddressList which associates with a list of Bluetooth per address connected before. This new data type was added in UEFI spec 2.7b. Signed-off-by: Ray Ni Cc: Michael D Kinney Cc: Liming Gao Reviewed-by: Liming Gao --- MdePkg/Include/Protocol/BluetoothLeConfig.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/MdePkg/Include/Protocol/BluetoothLeConfig.h b/MdePkg/Include/P= rotocol/BluetoothLeConfig.h index 8c0f881f85..8726a58b15 100644 --- a/MdePkg/Include/Protocol/BluetoothLeConfig.h +++ b/MdePkg/Include/Protocol/BluetoothLeConfig.h @@ -2,7 +2,7 @@ EFI Bluetooth LE Config Protocol as defined in UEFI 2.7. This protocol abstracts user interface configuration for BluetoothLe dev= ice. =20 - Copyright (c) 2017, Intel Corporation. All rights reserved.
+ Copyright (c) 2017 - 2019, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent =20 @par Revision Reference: @@ -451,6 +451,8 @@ typedef enum { EfiBluetoothSmpLocalCSRK, /* If Key hierarchy not supported */ EfiBluetoothSmpLocalSignCounter, EfiBluetoothSmpLocalDIV, + EfiBluetoothSmpPeerAddressList, + EfiBluetoothSmpMax, } EFI_BLUETOOTH_LE_SMP_DATA_TYPE; =20 /** --=20 2.21.0.windows.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#46366): https://edk2.groups.io/g/devel/message/46366 Mute This Topic: https://groups.io/mt/33037003/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-