qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [6772] do not pretend to support low voltage operation


From: Aurelien Jarno
Subject: [Qemu-devel] [6772] do not pretend to support low voltage operation
Date: Sat, 07 Mar 2009 22:10:40 +0000

Revision: 6772
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6772
Author:   aurel32
Date:     2009-03-07 22:10:40 +0000 (Sat, 07 Mar 2009)
Log Message:
-----------
do not pretend to support low voltage operation

Eliminate "mmc0: SD card claims to support the incompletely defined 'low voltage
range'. This will be ignored." warning. Qemu says the card is a SD card, and SD
spec doesn't define low-voltage cards, so do now pretend to be one.

Signed-off-by: Riku Voipio <address@hidden>
Signed-off-by: Aurelien Jarno <address@hidden>

Modified Paths:
--------------
    trunk/hw/sd.c

Modified: trunk/hw/sd.c
===================================================================
--- trunk/hw/sd.c       2009-03-07 22:10:28 UTC (rev 6771)
+++ trunk/hw/sd.c       2009-03-07 22:10:40 UTC (rev 6772)
@@ -195,7 +195,7 @@
 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)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]