[RFC PATCH v3 20/24] hw/ssi: allow NULL realize callbacks for peripherals

Octavian Purdila posted 24 patches 2 months, 4 weeks ago
[RFC PATCH v3 20/24] hw/ssi: allow NULL realize callbacks for peripherals
Posted by Octavian Purdila 2 months, 4 weeks ago
Signed-off-by: tavip <tavip@warp10.c.googlers.com>
---
 hw/ssi/ssi.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/hw/ssi/ssi.c b/hw/ssi/ssi.c
index 3f357e8f16..d1f3ce7c22 100644
--- a/hw/ssi/ssi.c
+++ b/hw/ssi/ssi.c
@@ -105,7 +105,9 @@ static void ssi_peripheral_realize(DeviceState *dev, Error **errp)
     }
     s->spc = ssc;
 
-    ssc->realize(s, errp);
+    if (ssc->realize) {
+        ssc->realize(s, errp);
+    }
 }
 
 static Property ssi_peripheral_properties[] = {
-- 
2.46.0.295.g3b9ea8a38a-goog