video: driver: update to FW_Cache logs level

- shift FW_Cache log levels as firmware shifted the bits
   by 4

Change-Id: I113d7c236bc1f361419edd09b8339ce88a453d5e
Signed-off-by: Deepa Guthyappa Madivalara <quic_dmadival@quicinc.com>
This commit is contained in:
Deepa Guthyappa Madivalara
2023-06-13 13:41:08 -07:00
rodzic b6fba340c3
commit cfbcc0880f

Wyświetl plik

@@ -83,12 +83,12 @@ enum vidc_msg_prio_fw {
FW_ERROR = 0x00000008, FW_ERROR = 0x00000008,
FW_FATAL = 0x00000010, FW_FATAL = 0x00000010,
FW_PERF = 0x00000020, FW_PERF = 0x00000020,
FW_CACHE_LOW = 0x00001000, FW_CACHE_LOW = 0x00000100,
FW_CACHE_MED = 0x00002000, FW_CACHE_MED = 0x00000200,
FW_CACHE_HIGH = 0x00004000, FW_CACHE_HIGH = 0x00000400,
FW_CACHE_ERROR = 0x00008000, FW_CACHE_ERROR = 0x00000800,
FW_CACHE_FATAL = 0x00010000, FW_CACHE_FATAL = 0x00001000,
FW_CACHE_PERF = 0x00020000, FW_CACHE_PERF = 0x00002000,
FW_PRINTK = 0x10000000, FW_PRINTK = 0x10000000,
FW_FTRACE = 0x20000000, FW_FTRACE = 0x20000000,
}; };