https://git.reactos.org/?p=reactos.git;a=commitdiff;h=b5a7765068852311932f9d1a5e688efb8c4c8060

commit b5a7765068852311932f9d1a5e688efb8c4c8060
Author:     Serge Gautherie <[email protected]>
AuthorDate: Sat Jan 13 15:41:49 2018 +0100
Commit:     Alexander Shaposhnikov <[email protected]>
CommitDate: Fri Jan 26 23:11:52 2018 +0200

    [FREELDR] i386vid.c: Downgrade/Improve 3 false ERR() to WARN(). CORE-13496
    
    Silence harmless errors, which can be reported at every boot.
---
 boot/freeldr/freeldr/arch/i386/i386vid.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/boot/freeldr/freeldr/arch/i386/i386vid.c 
b/boot/freeldr/freeldr/arch/i386/i386vid.c
index a0f86c955b..0d5db0abf7 100644
--- a/boot/freeldr/freeldr/arch/i386/i386vid.c
+++ b/boot/freeldr/freeldr/arch/i386/i386vid.c
@@ -205,7 +205,8 @@ USHORT BiosIsVesaSupported(VOID)
 
     if (Regs.w.ax != 0x004F)
     {
-        ERR("VESA BIOS call failed\n");
+        WARN("VBE Get SuperVGA information function not supported (AL=0x%x) or 
failed (AH=0x%x)\n",
+             Regs.b.al, Regs.b.ah);
         return 0x0000;
     }
 
@@ -260,7 +261,8 @@ BiosIsVesaDdcSupported(VOID)
 
     if (Regs.w.ax != 0x004F)
     {
-        ERR("VESA/DDC installation check failed\n");
+        WARN("VBE/DDC Installation check function not supported (AL=0x%x) or 
failed (AH=0x%x)\n",
+             Regs.b.al, Regs.b.ah);
         return FALSE;
     }
 
@@ -290,7 +292,8 @@ BiosVesaReadEdid(VOID)
 
     if (Regs.w.ax != 0x004F)
     {
-        ERR("Read EDID function not supported!\n");
+        WARN("VBE/DDC Read EDID function not supported (AL=0x%x) or failed 
(AH=0x%x)\n",
+             Regs.b.al, Regs.b.ah);
         return FALSE;
     }
 

Reply via email to