summaryrefslogtreecommitdiff
path: root/mali_kbase/mali_kbase_debug.c
diff options
context:
space:
mode:
authorJörg Wagner <jorwag@google.com>2023-12-14 09:44:26 +0000
committerJörg Wagner <jorwag@google.com>2023-12-14 09:44:26 +0000
commit049a542207ed694271316782397b78b2e202086a (patch)
tree105e9378d4d5062dc72109fdd4a77c915bd9425d /mali_kbase/mali_kbase_debug.c
parente61eb93296e9f940b32d4ad4b0c3a5557cbeaf17 (diff)
downloadgpu-049a542207ed694271316782397b78b2e202086a.tar.gz
Update KMD to r47p0
Provenance: ipdelivery@ad01e50d640910a99224382bb227e6d4de627657 Change-Id: I19ac9bce34a5c5a319c1b4a388e8b037b3dfe6e7
Diffstat (limited to 'mali_kbase/mali_kbase_debug.c')
-rw-r--r--mali_kbase/mali_kbase_debug.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/mali_kbase/mali_kbase_debug.c b/mali_kbase/mali_kbase_debug.c
index 6d3b109..680ba01 100644
--- a/mali_kbase/mali_kbase_debug.c
+++ b/mali_kbase/mali_kbase_debug.c
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note
/*
*
- * (C) COPYRIGHT 2012-2014, 2020-2021 ARM Limited. All rights reserved.
+ * (C) COPYRIGHT 2012-2023 ARM Limited. All rights reserved.
*
* This program is free software and is provided to you under the terms of the
* GNU General Public License version 2 as published by the Free Software
@@ -19,12 +19,10 @@
*
*/
-#include <mali_kbase.h>
+#include <mali_kbase_debug.h>
+#include <mali_kbase_linux.h>
-static struct kbasep_debug_assert_cb kbasep_debug_assert_registered_cb = {
- NULL,
- NULL
-};
+static struct kbasep_debug_assert_cb kbasep_debug_assert_registered_cb = { NULL, NULL };
void kbase_debug_assert_register_hook(kbase_debug_assert_hook *func, void *param)
{
@@ -38,4 +36,3 @@ void kbasep_debug_assert_call_hook(void)
kbasep_debug_assert_registered_cb.func(kbasep_debug_assert_registered_cb.param);
}
KBASE_EXPORT_SYMBOL(kbasep_debug_assert_call_hook);
-