MdePkg/BluetoothLeConfig.h: Add type EfiBluetoothSmpPeerAddressList

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 <ray.ni@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
Ray Ni 2019-08-27 02:14:45 +08:00
parent d6f5a5050b
commit f49421a47d

View File

@ -2,7 +2,7 @@
EFI Bluetooth LE Config Protocol as defined in UEFI 2.7. EFI Bluetooth LE Config Protocol as defined in UEFI 2.7.
This protocol abstracts user interface configuration for BluetoothLe device. This protocol abstracts user interface configuration for BluetoothLe device.
Copyright (c) 2017, Intel Corporation. All rights reserved.<BR> Copyright (c) 2017 - 2019, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent SPDX-License-Identifier: BSD-2-Clause-Patent
@par Revision Reference: @par Revision Reference:
@ -451,6 +451,8 @@ typedef enum {
EfiBluetoothSmpLocalCSRK, /* If Key hierarchy not supported */ EfiBluetoothSmpLocalCSRK, /* If Key hierarchy not supported */
EfiBluetoothSmpLocalSignCounter, EfiBluetoothSmpLocalSignCounter,
EfiBluetoothSmpLocalDIV, EfiBluetoothSmpLocalDIV,
EfiBluetoothSmpPeerAddressList,
EfiBluetoothSmpMax,
} EFI_BLUETOOTH_LE_SMP_DATA_TYPE; } EFI_BLUETOOTH_LE_SMP_DATA_TYPE;
/** /**