do not pretend to support low voltage operation
authorRiku Voipio <riku.voipio@nokia.com>
Tue, 17 Feb 2009 16:16:26 +0000 (18:16 +0200)
committerRiku Voipio <riku.voipio@nokia.com>
Tue, 17 Feb 2009 16:16:26 +0000 (18:16 +0200)
eliminate "mmc0: SD card claims to support the incompletely defined 'low voltage
range'. This will be ignored." warning

hw/sd.c

diff --git a/hw/sd.c b/hw/sd.c
index 0c770bc..fa1c02c 100644 (file)
--- a/hw/sd.c
+++ b/hw/sd.c
@@ -195,7 +195,7 @@ static uint16_t sd_crc16(void *message, size_t width)
 static void sd_set_ocr(SDState *sd)
 {
     /* All voltages OK, card power-up OK, Standard Capacity SD Memory Card */
-    sd->ocr = 0x80ffff80;
+    sd->ocr = 0x80ffff00;
 }
 
 static void sd_set_scr(SDState *sd)