[openfirmware] [commit] r3362 - dev/mmc/sdhci

repository service svn at openfirmware.info
Fri Oct 12 00:53:25 CEST 2012


Author: wmb
Date: Fri Oct 12 00:53:24 2012
New Revision: 3362
URL: http://tracker.coreboot.org/trac/openfirmware/changeset/3362

Log:
SDHCI - fixed   ok copy int:\foo int:\bar   which was hanging

Modified:
   dev/mmc/sdhci/slot.fth

Modified: dev/mmc/sdhci/slot.fth
==============================================================================
--- dev/mmc/sdhci/slot.fth	Thu Oct 11 09:50:31 2012	(r3361)
+++ dev/mmc/sdhci/slot.fth	Fri Oct 12 00:53:24 2012	(r3362)
@@ -2,12 +2,22 @@
 
 0 " #address-cells" integer-property
 0 " #size-cells" integer-property
+[ifdef] my-clock-on
+0 value open-count
+[then]
+
 : open  
-   [ifdef] my-clock-on  my-clock-on  [then]
+[ifdef] my-clock-on
+   open-count 0=  if  my-clock-on  then
+   open-count 1+ to open-count
+[then]
    true
 ;
 : close
-   [ifdef] my-clock-off  my-clock-off  [then]
+[ifdef] my-clock-off
+   open-count 1 =  if  my-clock-off  then
+   open-count 1- 0 max  to open-count
+[then]
 ;
 
 : r/w-blocks " r/w-blocks" $call-parent  ;



More information about the openfirmware mailing list