[OpenBIOS] r658 - cpu/x86/pc/olpc

svn at openbios.org svn at openbios.org
Tue Oct 2 06:35:37 CEST 2007


Author: wmb
Date: 2007-10-02 06:35:36 +0200 (Tue, 02 Oct 2007)
New Revision: 658

Modified:
   cpu/x86/pc/olpc/usb.fth
Log:
Fixed innocuous stack problem in usb-quiet


Modified: cpu/x86/pc/olpc/usb.fth
===================================================================
--- cpu/x86/pc/olpc/usb.fth	2007-10-02 03:22:33 UTC (rev 657)
+++ cpu/x86/pc/olpc/usb.fth	2007-10-02 04:35:36 UTC (rev 658)
@@ -86,8 +86,8 @@
 
 : usb-quiet  ( -- )
    [ ' go-hook behavior compile, ]    \ Chain to old behavior
-   " usb1" " reset-usb" execute-device-method
-   " usb2" " reset-usb" execute-device-method
+   " usb1" " reset-usb" execute-device-method drop
+   " usb2" " reset-usb" execute-device-method drop
 ;
 ' usb-quiet to go-hook
 




More information about the OpenBIOS mailing list