summaryrefslogtreecommitdiff
path: root/mali_kbase/mali_malisw.h
diff options
context:
space:
mode:
authorSiddharth Kapoor <ksiddharth@google.com>2022-03-02 14:51:29 +0800
committerSiddharth Kapoor <ksiddharth@google.com>2022-03-02 14:51:29 +0800
commit88d7d984fed1c2a4358ce2bbc334e82d71e3a391 (patch)
tree18f20402a0ed15ae9fe62b29a9957922ebcc2ada /mali_kbase/mali_malisw.h
parent0207d6c3b7a2002f15c60d08617e956faf5ba90c (diff)
downloadgpu-88d7d984fed1c2a4358ce2bbc334e82d71e3a391.tar.gz
Mali Valhall Android DDK r36p0 KMD
Provenance: 9f72c118d9 (ipdelivery/EAC/v_r36p0) VX504X08X-BU-00000-r36p0-01eac0 - Valhall Android DDK VX504X08X-BU-60000-r36p0-01eac0 - Valhall Android Document Bundle VX504X08X-DC-11001-r36p0-01eac0 - Valhall Android DDK Software Errata VX504X08X-SW-99006-r36p0-01eac0 - Valhall Android Renderscript AOSP parts Signed-off-by: Siddharth Kapoor <ksiddharth@google.com> Change-Id: I4a63b707fedc68d7b7d046596c7098da47a139cb
Diffstat (limited to 'mali_kbase/mali_malisw.h')
-rw-r--r--mali_kbase/mali_malisw.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/mali_kbase/mali_malisw.h b/mali_kbase/mali_malisw.h
index 92c8d31..fc8dcbc 100644
--- a/mali_kbase/mali_malisw.h
+++ b/mali_kbase/mali_malisw.h
@@ -1,7 +1,7 @@
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
/*
*
- * (C) COPYRIGHT 2014-2015, 2018, 2020-2021 ARM Limited. All rights reserved.
+ * (C) COPYRIGHT 2014-2015, 2018, 2020-2022 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
@@ -53,7 +53,8 @@
#define MAX(x, y) ((x) < (y) ? (y) : (x))
/**
- * Function-like macro for suppressing unused variable warnings.
+ * CSTD_UNUSED - Function-like macro for suppressing unused variable warnings.
+ *
* @x: unused variable
*
* Where possible such variables should be removed; this macro is present for
@@ -62,7 +63,7 @@
#define CSTD_UNUSED(x) ((void)(x))
/**
- * Function-like macro for use where "no behavior" is desired.
+ * CSTD_NOP - Function-like macro for use where "no behavior" is desired.
* @...: no-op
*
* This is useful when compile time macros turn a function-like macro in to a
@@ -71,7 +72,7 @@
#define CSTD_NOP(...) ((void)#__VA_ARGS__)
/**
- * Function-like macro for stringizing a single level macro.
+ * CSTD_STR1 - Function-like macro for stringizing a single level macro.
* @x: macro's value
*
* @code
@@ -83,7 +84,7 @@
#define CSTD_STR1(x) #x
/**
- * Function-like macro for stringizing a macro's value.
+ * CSTD_STR2 - Function-like macro for stringizing a macro's value.
* @x: macro's value
*
* This should not be used if the macro is defined in a way which may have no