Merge "drm@1.4: reorder LogPriority to match android_LogPriority" into sc-dev
diff --git a/drm/1.4/types.hal b/drm/1.4/types.hal
index 09531a4..17eba8a 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,
 };
 
 /**