From: Vladimir 'phcoder' Serbinenko Date: Wed, 5 May 2010 08:49:03 +0000 (+0200) Subject: revert accidental debugging commit X-Git-Tag: 1.99~780^2~18 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dcf937195ca499ce0b672e98e81c92891ea3abd2;p=thirdparty%2Fgrub.git revert accidental debugging commit --- diff --git a/kern/misc.c b/kern/misc.c index e86043c15..9d8fc70da 100644 --- a/kern/misc.c +++ b/kern/misc.c @@ -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 (); } }