1 | /** @file
|
---|
2 | Null implementation of InternalTpm12Detect(), always returning
|
---|
3 | EFI_UNSUPPORTED.
|
---|
4 |
|
---|
5 | Copyright (C) 2020, Red Hat, Inc.
|
---|
6 |
|
---|
7 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
8 | **/
|
---|
9 |
|
---|
10 | #include "Tpm12Support.h"
|
---|
11 |
|
---|
12 | /**
|
---|
13 | Detect the presence of a TPM with interface version 1.2.
|
---|
14 |
|
---|
15 | @retval EFI_UNSUPPORTED The platform that includes this particular
|
---|
16 | implementation of the function does not support
|
---|
17 | TPM-1.2.
|
---|
18 | **/
|
---|
19 | EFI_STATUS
|
---|
20 | InternalTpm12Detect (
|
---|
21 | VOID
|
---|
22 | )
|
---|
23 | {
|
---|
24 | return EFI_UNSUPPORTED;
|
---|
25 | }
|
---|