drm@1.4: reorder LogPriority to match android_LogPriority

Bug: 162255728
Test: VtsHalDrmV1_4TargetTest
Change-Id: Ia987890a4c58ce5f7fac7b33ae8568fbcee427dc
diff --git a/drm/1.4/types.hal b/drm/1.4/types.hal
index 706c3aa..fd07c69 100644
--- a/drm/1.4/types.hal
+++ b/drm/1.4/types.hal
@@ -19,11 +19,14 @@
 import @1.2::Status;
 
 enum LogPriority : uint32_t {
-  ERROR,
-  WARN,
-  INFO,
-  DEBUG,
-  VERBOSE
+    UNKNOWN,
+    DEFAULT,
+    VERBOSE,
+    DEBUG,
+    INFO,
+    WARN,
+    ERROR,
+    FATAL,
 };
 
 /**