petalogix_ml605_mmu: Cleanup ssi_create_slave()
authorPeter Crosthwaite <peter.crosthwaite@xilinx.com>
Thu, 4 Apr 2013 01:04:11 +0000 (11:04 +1000)
committerStefan Hajnoczi <stefanha@redhat.com>
Fri, 5 Apr 2013 13:04:10 +0000 (15:04 +0200)
With the recent m25p80 cleanup there is no need to use
ssi_create_slave_no_init() anymore. Just use ssi_create_slave().

Signed-off-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
hw/microblaze/petalogix_ml605_mmu.c

index cfc0220..07dc808 100644 (file)
@@ -158,8 +158,7 @@ petalogix_ml605_init(QEMUMachineInitArgs *args)
         for (i = 0; i < NUM_SPI_FLASHES; i++) {
             qemu_irq cs_line;
 
-            dev = ssi_create_slave_no_init(spi, "n25q128");
-            qdev_init_nofail(dev);
+            dev = ssi_create_slave(spi, "n25q128");
             cs_line = qdev_get_gpio_in(dev, 0);
             sysbus_connect_irq(busdev, i+1, cs_line);
         }