[nmi_gen] Minor fix to get synthesis in DC unstuck

Signed-off-by: Michael Schaffner <msf@google.com>
diff --git a/hw/ip/nmi_gen/data/nmi_gen.hjson b/hw/ip/nmi_gen/data/nmi_gen.hjson
index 471b1ac..e83e8a4 100644
--- a/hw/ip/nmi_gen/data/nmi_gen.hjson
+++ b/hw/ip/nmi_gen/data/nmi_gen.hjson
@@ -47,7 +47,7 @@
       name:    "esc_tx",
       act:     "rcv",
       package: "prim_esc_pkg",
-      default: "'{3{prim_esc_pkg::ESC_TX_DEFAULT}}"
+      default: "{3{prim_esc_pkg::ESC_TX_DEFAULT}}"
     },
 
     { struct:  "esc_rx",
diff --git a/hw/top_earlgrey/data/autogen/top_earlgrey.gen.hjson b/hw/top_earlgrey/data/autogen/top_earlgrey.gen.hjson
index 00ffb55..86b8519 100644
--- a/hw/top_earlgrey/data/autogen/top_earlgrey.gen.hjson
+++ b/hw/top_earlgrey/data/autogen/top_earlgrey.gen.hjson
@@ -2539,7 +2539,7 @@
           name: esc_tx
           act: rcv
           package: prim_esc_pkg
-          default: "'{3{prim_esc_pkg::ESC_TX_DEFAULT}}"
+          default: "{3{prim_esc_pkg::ESC_TX_DEFAULT}}"
           inst_name: nmi_gen
           index: -1
         }
@@ -10565,7 +10565,7 @@
         name: esc_tx
         act: rcv
         package: prim_esc_pkg
-        default: "'{3{prim_esc_pkg::ESC_TX_DEFAULT}}"
+        default: "{3{prim_esc_pkg::ESC_TX_DEFAULT}}"
         inst_name: nmi_gen
         index: -1
       }
diff --git a/hw/top_earlgrey/rtl/autogen/top_earlgrey.sv b/hw/top_earlgrey/rtl/autogen/top_earlgrey.sv
index 41323b5..12205b9 100644
--- a/hw/top_earlgrey/rtl/autogen/top_earlgrey.sv
+++ b/hw/top_earlgrey/rtl/autogen/top_earlgrey.sv
@@ -1098,7 +1098,7 @@
 
       // Inter-module signals
       .nmi_rst_req_o(pwrmgr_rstreqs),
-      .esc_tx_i('{3{prim_esc_pkg::ESC_TX_DEFAULT}}),
+      .esc_tx_i({3{prim_esc_pkg::ESC_TX_DEFAULT}}),
       .esc_rx_o(),
       .tl_i(nmi_gen_tl_req),
       .tl_o(nmi_gen_tl_rsp),