diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-11-24 23:35:08 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-11-24 23:35:08 +0000 |
commit | 775616c3ae8c9bdd43d57274f259b09ae87217b0 (patch) | |
tree | 0c27d7758d5f3ab8d89fcaa3e9ab181366dc1cae /hw/omap_mmc.c | |
parent | f3b9f954326d5010c7215a3a023264204afd3c42 (diff) |
Partial SD card SPI mode support.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3731 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/omap_mmc.c')
-rw-r--r-- | hw/omap_mmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/omap_mmc.c b/hw/omap_mmc.c index 0a7ae87126..6fbbb84912 100644 --- a/hw/omap_mmc.c +++ b/hw/omap_mmc.c @@ -525,7 +525,7 @@ struct omap_mmc_s *omap_mmc_init(target_phys_addr_t base, cpu_register_physical_memory(s->base, 0x800, iomemtype); /* Instantiate the storage */ - s->card = sd_init(bd); + s->card = sd_init(bd, 0); return s; } |