diff options
author | Alyssa Rosenzweig <[email protected]> | 2020-01-23 15:28:09 -0500 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-01-24 18:53:31 +0000 |
commit | d126515a16d268ec5aae5daf116df53cdc47fb88 (patch) | |
tree | 2a4c685badfc18859ce0d70cffe598bd4f20a614 /src/panfrost/pandecode/public.h | |
parent | 4a553212fa171ddaf849d4abb2d67208390cd769 (diff) |
panfrost: Don't use implicit mali_exception_status enum
Fixes ../src/panfrost/pandecode/public.h:53:33: warning: ‘enum mali_exception_access’ declared inside parameter list will not be visible outside of this definition or declaration
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3543>
Diffstat (limited to 'src/panfrost/pandecode/public.h')
-rw-r--r-- | src/panfrost/pandecode/public.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/panfrost/pandecode/public.h b/src/panfrost/pandecode/public.h index 7d684347c46..9144ea1b60d 100644 --- a/src/panfrost/pandecode/public.h +++ b/src/panfrost/pandecode/public.h @@ -54,7 +54,7 @@ pandecode_inject_mmap(uint64_t gpu_va, void *cpu, unsigned sz, const char *name) int pandecode_jc(uint64_t jc_gpu_va, bool bifrost, unsigned gpu_id); char * -pandecode_exception_access(enum mali_exception_access access); +pandecode_exception_access(unsigned access); #endif /* __MMAP_TRACE_H__ */ |