aboutsummaryrefslogtreecommitdiff
path: root/mailbox
diff options
context:
space:
mode:
authorMikael Olsson <mikael.olsson@arm.com>2023-10-31 10:49:06 +0100
committerMikael Olsson <mikael.olsson@arm.com>2023-11-01 13:15:03 +0100
commitc1a418d61ab9930096b05517ae11655bf590c4b2 (patch)
tree17edff9e9b61afc97c90f20d995719053c8ed9c4 /mailbox
parentedd2550cd909b584610ac18387b3261a4f50b392 (diff)
downloadethos-u-linux-driver-stack-c1a418d61ab9930096b05517ae11655bf590c4b2.tar.gz
Add Sparse checking to kernel module builds
Sparse is a semantic checker for C that can help find potential issues in the kernel module code. To make use of the tool, the CMake files for the kernel modules have been updated to enable the tool to run on all the kernel module source files before they are built. Change-Id: I114920448763b69eb0bdfb9ab6ec51ea8b940881 Signed-off-by: Mikael Olsson <mikael.olsson@arm.com>
Diffstat (limited to 'mailbox')
-rw-r--r--mailbox/CMakeLists.txt9
1 files changed, 4 insertions, 5 deletions
diff --git a/mailbox/CMakeLists.txt b/mailbox/CMakeLists.txt
index 44d8c82..a3bc60f 100644
--- a/mailbox/CMakeLists.txt
+++ b/mailbox/CMakeLists.txt
@@ -1,5 +1,6 @@
#
-# Copyright (c) 2020-2022 Arm Limited.
+# SPDX-FileCopyrightText: Copyright 2020-2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
+# SPDX-License-Identifier: GPL-2.0-only
#
# 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
@@ -15,8 +16,6 @@
# along with this program; if not, you can access it online at
# http://www.gnu.org/licenses/gpl-2.0.html.
#
-# SPDX-License-Identifier: GPL-2.0-only
-#
cmake_minimum_required(VERSION 3.0.2)
@@ -39,7 +38,7 @@ list(TRANSFORM OBJ PREPEND ${CMAKE_CURRENT_SOURCE_DIR}/)
# Build the kernel module
add_custom_target(mailbox-module ALL
COMMAND ${CMAKE_MAKE_PROGRAM} -C ${KDIR}
- M=${CMAKE_CURRENT_SOURCE_DIR} CONFIG_ARM_MHU_V2=m CONFIG_ARM_MHU=m
+ C=2 M=${CMAKE_CURRENT_SOURCE_DIR} CONFIG_ARM_MHU_V2=m CONFIG_ARM_MHU=m
CROSS_COMPILE=${CROSS_COMPILE} ARCH=${ARCH} modules
BYPRODUCTS
${CMAKE_CURRENT_SOURCE_DIR}/arm_mhu.ko
@@ -57,4 +56,4 @@ add_custom_target(mailbox-module ALL
COMMENT "Building arm_mhu.ko arm_mhu_v2.ko"
VERBATIM)
-install(FILES arm_mhu.ko arm_mhu_v2.ko DESTINATION "modules") \ No newline at end of file
+install(FILES arm_mhu.ko arm_mhu_v2.ko DESTINATION "modules")