qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 01/42] tpm-tis: remove unused hw_access argument


From: Stefan Berger
Subject: Re: [Qemu-devel] [PATCH 01/42] tpm-tis: remove unused hw_access argument
Date: Mon, 9 Oct 2017 22:34:56 -0400
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0

On 10/09/2017 06:55 PM, Marc-André Lureau wrote:
This argument is always false, simplify the code.

Signed-off-by: Marc-André Lureau <address@hidden>

Reviewed-by: Stefan Berger <address@hidden>



---
  hw/tpm/tpm_tis.c | 13 +++----------
  1 file changed, 3 insertions(+), 10 deletions(-)

diff --git a/hw/tpm/tpm_tis.c b/hw/tpm/tpm_tis.c
index d5118e7f60..a9e9cbdeb2 100644
--- a/hw/tpm/tpm_tis.c
+++ b/hw/tpm/tpm_tis.c
@@ -615,9 +615,8 @@ static uint64_t tpm_tis_mmio_read(void *opaque, hwaddr addr,
   * Write a value to a register of the TIS interface
   * See specs pages 33-63 for description of the registers
   */
-static void tpm_tis_mmio_write_intern(void *opaque, hwaddr addr,
-                                      uint64_t val, unsigned size,
-                                      bool hw_access)
+static void tpm_tis_mmio_write(void *opaque, hwaddr addr,
+                               uint64_t val, unsigned size)
  {
      TPMState *s = opaque;
      TPMTISEmuState *tis = &s->s.tis;
@@ -631,7 +630,7 @@ static void tpm_tis_mmio_write_intern(void *opaque, hwaddr 
addr,

      DPRINTF("tpm_tis: write.%u(%08x) = %08x\n", size, (int)addr, (int)val);

-    if (locty == 4 && !hw_access) {
+    if (locty == 4) {
          DPRINTF("tpm_tis: Access to locality 4 only allowed from hardware\n");
          return;
      }
@@ -942,12 +941,6 @@ static void tpm_tis_mmio_write_intern(void *opaque, hwaddr 
addr,
      }
  }

-static void tpm_tis_mmio_write(void *opaque, hwaddr addr,
-                               uint64_t val, unsigned size)
-{
-    tpm_tis_mmio_write_intern(opaque, addr, val, size, false);
-}
-
  static const MemoryRegionOps tpm_tis_memory_ops = {
      .read = tpm_tis_mmio_read,
      .write = tpm_tis_mmio_write,





reply via email to

[Prev in Thread] Current Thread [Next in Thread]