diff mbox series

[v2,03/11] hw/tpm: Rename TPMDEV as TPM_BACKEND in Kconfig

Message ID 20200611160306.2751-4-philmd@redhat.com (mailing list archive)
State New, archived
Headers show
Series tpm: Split hw/ vs backends/ | expand

Commit Message

Philippe Mathieu-Daudé June 11, 2020, 4:02 p.m. UTC
The TPMDEV describe TPM backends. Use the TPM_BACKEND config
name which is self-explicit.

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
 hw/tpm/Kconfig | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

Comments

Stefan Berger June 11, 2020, 4:22 p.m. UTC | #1
On 6/11/20 12:02 PM, Philippe Mathieu-Daudé wrote:
> The TPMDEV describe TPM backends. Use the TPM_BACKEND config
> name which is self-explicit.
>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>

Reviewed-by: Stefan Berger <stefanb@linux.ibm.com>


> ---
>   hw/tpm/Kconfig | 12 ++++++------
>   1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/hw/tpm/Kconfig b/hw/tpm/Kconfig
> index 4794e7fe28..5028fd8880 100644
> --- a/hw/tpm/Kconfig
> +++ b/hw/tpm/Kconfig
> @@ -1,4 +1,4 @@
> -config TPMDEV
> +config TPM_BACKEND
>       bool
>       depends on TPM
>   
> @@ -15,26 +15,26 @@ config TPM_TIS_SYSBUS
>   config TPM_TIS
>       bool
>       depends on TPM
> -    select TPMDEV
> +    select TPM_BACKEND
>   
>   config TPM_CRB
>       bool
>       depends on TPM && PC
> -    select TPMDEV
> +    select TPM_BACKEND
>   
>   config TPM_PASSTHROUGH
>       bool
>       default y
>       # FIXME: should check for x86 host as well
> -    depends on TPMDEV && LINUX
> +    depends on TPM_BACKEND && LINUX
>   
>   config TPM_EMULATOR
>       bool
>       default y
> -    depends on TPMDEV
> +    depends on TPM_BACKEND
>   
>   config TPM_SPAPR
>       bool
>       default y
>       depends on TPM && PSERIES
> -    select TPMDEV
> +    select TPM_BACKEND
diff mbox series

Patch

diff --git a/hw/tpm/Kconfig b/hw/tpm/Kconfig
index 4794e7fe28..5028fd8880 100644
--- a/hw/tpm/Kconfig
+++ b/hw/tpm/Kconfig
@@ -1,4 +1,4 @@ 
-config TPMDEV
+config TPM_BACKEND
     bool
     depends on TPM
 
@@ -15,26 +15,26 @@  config TPM_TIS_SYSBUS
 config TPM_TIS
     bool
     depends on TPM
-    select TPMDEV
+    select TPM_BACKEND
 
 config TPM_CRB
     bool
     depends on TPM && PC
-    select TPMDEV
+    select TPM_BACKEND
 
 config TPM_PASSTHROUGH
     bool
     default y
     # FIXME: should check for x86 host as well
-    depends on TPMDEV && LINUX
+    depends on TPM_BACKEND && LINUX
 
 config TPM_EMULATOR
     bool
     default y
-    depends on TPMDEV
+    depends on TPM_BACKEND
 
 config TPM_SPAPR
     bool
     default y
     depends on TPM && PSERIES
-    select TPMDEV
+    select TPM_BACKEND