]> git.proxmox.com Git - mirror_edk2.git/blobdiff - IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/ConsoleOption.c
1) Make naming of enumeration type follows coding style
[mirror_edk2.git] / IntelFrameworkModulePkg / Universal / BdsDxe / BootMaint / ConsoleOption.c
index 5ab898959e96c7bb067fcc0d2513a93c34188c13..06fd0e0af775c3eb33aa62abe5ff6ef31d315bd7 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   handles console redirection from boot manager\r
 \r
-Copyright (c) 2004 - 2008, Intel Corporation. <BR>\r
+Copyright (c) 2004 - 2009, Intel Corporation. <BR>\r
 All rights reserved. This program and the accompanying materials\r
 are licensed and made available under the terms and conditions of the BSD License\r
 which accompanies this distribution.  The full text of the license may be found at\r
@@ -864,19 +864,19 @@ IsTerminalDevicePath (
   CopyMem (&TempGuid, &Vendor->Guid, sizeof (EFI_GUID));\r
 \r
   if (CompareGuid (&TempGuid, &TerminalTypeGuid[0])) {\r
-    *Termi      = PC_ANSI;\r
+    *Termi      = TerminalTypePcAnsi;\r
     IsTerminal  = TRUE;\r
   } else {\r
     if (CompareGuid (&TempGuid, &TerminalTypeGuid[1])) {\r
-      *Termi      = VT_100;\r
+      *Termi      = TerminalTypeVt100;\r
       IsTerminal  = TRUE;\r
     } else {\r
       if (CompareGuid (&TempGuid, &TerminalTypeGuid[2])) {\r
-        *Termi      = VT_100_PLUS;\r
+        *Termi      = TerminalTypeVt100Plus;\r
         IsTerminal  = TRUE;\r
       } else {\r
         if (CompareGuid (&TempGuid, &TerminalTypeGuid[3])) {\r
-          *Termi      = VT_UTF8;\r
+          *Termi      = TerminalTypeVtUtf8;\r
           IsTerminal  = TRUE;\r
         } else {\r
           IsTerminal = FALSE;\r