]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
revert accidental debugging commit
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Wed, 5 May 2010 08:49:03 +0000 (10:49 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Wed, 5 May 2010 08:49:03 +0000 (10:49 +0200)
kern/misc.c

index e86043c15f3f1bc893b5dc19ed298852f6b03aa3..9d8fc70da1b189fd6ea909dc2767d0fa4954404e 100644 (file)
@@ -189,7 +189,7 @@ grub_real_dprintf (const char *file, const int line, const char *condition,
   const char *debug = grub_env_get ("debug");
 
   if (! debug)
-    debug = "usb,ohci";
+    return;
 
   if (grub_strword (debug, "all") || grub_strword (debug, condition))
     {
@@ -197,7 +197,6 @@ grub_real_dprintf (const char *file, const int line, const char *condition,
       va_start (args, fmt);
       grub_vprintf (fmt, args);
       va_end (args);
-      grub_refresh ();
     }
 }