Changeset 90995 in vbox
- Timestamp:
- Aug 30, 2021 12:56:43 PM (3 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
include/iprt/mangling.h (modified) (1 diff)
-
include/iprt/tpm.h (modified) (1 diff)
-
src/VBox/Runtime/r3/linux/tpm-linux.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mangling.h
r90915 r90995 2653 2653 # define RTTpmOpen RT_MANGLER(RTTpmOpen) 2654 2654 # define RTTpmClose RT_MANGLER(RTTpmClose) 2655 # define RTTpmGetLocalityMax RT_MANGLER(RTTpmGetLocalityMax) 2655 2656 # define RTTpmGetVersion RT_MANGLER(RTTpmGetVersion) 2656 2657 # define RTTpmReqCancel RT_MANGLER(RTTpmReqCancel) -
trunk/include/iprt/tpm.h
r90915 r90995 106 106 107 107 /** 108 * Returns the maximum locality supported by the given TPM. 109 * 110 * @returns Maximum locality supported (0-4). 111 * @param hTpm Handle of the TPM. 112 */ 113 RTDECL(uint32_t) RTTpmGetLocalityMax(RTTPM hTpm); 114 115 116 /** 108 117 * Cancels a currently executed request for the given TPM handle. 109 118 * -
trunk/src/VBox/Runtime/r3/linux/tpm-linux.cpp
r90915 r90995 156 156 157 157 158 RTDECL(uint32_t) RTTpmGetLocalityMax(RTTPM hTpm) 159 { 160 RT_NOREF(hTpm); 161 return 0; /* On Linux only TPM locality 0 is supported. */ 162 } 163 164 158 165 RTDECL(int) RTTpmReqCancel(RTTPM hTpm) 159 166 {
Note:
See TracChangeset
for help on using the changeset viewer.

