qemu-devel
[Top][All Lists]
Advanced

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

Re: [PATCH 3/6] hw/pci-host/sabre: Simplify code initializing variable o


From: Mark Cave-Ayland
Subject: Re: [PATCH 3/6] hw/pci-host/sabre: Simplify code initializing variable once
Date: Mon, 19 Oct 2020 20:06:03 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.3.1

On 12/10/2020 18:09, Philippe Mathieu-Daudé wrote:

We only need to zero-initialize 'val' once.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
  hw/pci-host/sabre.c | 12 +-----------
  1 file changed, 1 insertion(+), 11 deletions(-)

diff --git a/hw/pci-host/sabre.c b/hw/pci-host/sabre.c
index 0889c9369f6..3645bc962cb 100644
--- a/hw/pci-host/sabre.c
+++ b/hw/pci-host/sabre.c
@@ -195,32 +195,25 @@ static uint64_t sabre_config_read(void *opaque,
                                    hwaddr addr, unsigned size)
  {
      SabreState *s = opaque;
-    uint32_t val;
+    uint32_t val = 0;
switch (addr) {
      case 0x30 ... 0x4f: /* DMA error registers */
-        val = 0;
          /* XXX: not implemented yet */
          break;
      case 0xc00 ... 0xc3f: /* PCI interrupt control */
          if (addr & 4) {
              val = s->pci_irq_map[(addr & 0x3f) >> 3];
-        } else {
-            val = 0;
          }
          break;
      case 0x1000 ... 0x107f: /* OBIO interrupt control */
          if (addr & 4) {
              val = s->obio_irq_map[(addr & 0xff) >> 3];
-        } else {
-            val = 0;
          }
          break;
      case 0x1080 ... 0x108f: /* PCI bus error */
          if (addr & 4) {
              val = s->pci_err_irq_map[(addr & 0xf) >> 3];
-        } else {
-            val = 0;
          }
          break;
      case 0x2000 ... 0x202f: /* PCI control */
@@ -229,8 +222,6 @@ static uint64_t sabre_config_read(void *opaque,
      case 0xf020 ... 0xf027: /* Reset control */
          if (addr & 4) {
              val = s->reset_control;
-        } else {
-            val = 0;
          }
          break;
      case 0x5000 ... 0x51cf: /* PIO/DMA diagnostics */
@@ -239,7 +230,6 @@ static uint64_t sabre_config_read(void *opaque,
      case 0xf000 ... 0xf01f: /* FFB config, memory control */
          /* we don't care */
      default:
-        val = 0;
          break;
      }
      trace_sabre_config_read(addr, val);

Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>


ATB,

Mark.



reply via email to

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