summaryrefslogtreecommitdiffstats
path: root/src/panfrost/pandecode/decode.h
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <[email protected]>2019-07-10 10:36:16 -0700
committerAlyssa Rosenzweig <[email protected]>2019-07-10 10:43:23 -0700
commit7318b525a2e5fab41c8e4bf6945c58fcf7eff81f (patch)
tree5d105b99ee2472e447cbbc9bdb620c48d2cf41a4 /src/panfrost/pandecode/decode.h
parentec2a59cd7aa42652645e76e29a72335370c80e50 (diff)
pan/decode: Auto style
$ astyle *.c *.h --style=linux -s8 Signed-off-by: Alyssa Rosenzweig <[email protected]>
Diffstat (limited to 'src/panfrost/pandecode/decode.h')
-rw-r--r--src/panfrost/pandecode/decode.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/panfrost/pandecode/decode.h b/src/panfrost/pandecode/decode.h
index 9c788bbabcc..3d64e1dda2f 100644
--- a/src/panfrost/pandecode/decode.h
+++ b/src/panfrost/pandecode/decode.h
@@ -53,15 +53,15 @@ pandecode_inject_mmap(mali_ptr gpu_va, void *cpu, unsigned sz, const char *name)
static inline void *
__pandecode_fetch_gpu_mem(const struct pandecode_mapped_memory *mem,
- mali_ptr gpu_va, size_t size,
- int line, const char *filename)
+ mali_ptr gpu_va, size_t size,
+ int line, const char *filename)
{
if (!mem)
mem = pandecode_find_mapped_gpu_mem_containing(gpu_va);
if (!mem) {
fprintf(stderr, "Access to unknown memory %" PRIx64 " in %s:%d",
- gpu_va, filename, line);
+ gpu_va, filename, line);
assert(0);
}