From 0d1f0e9966fee8e79420370f2c98ad9b750421dc Mon Sep 17 00:00:00 2001 From: Seung-Woo Kim Date: Wed, 5 Jan 2022 16:10:38 +0900 Subject: [PATCH] misc/trinity: Fix invalid spdx identifiers for uapi haeder The user api header requires "WITH Linux-syscall-note" for SPDX-License-Identifier when installing. Without it, the command "make headers_install" fails. To fix it, add proper spdx license identifier for uapi header. Change-Id: I95272a29b6808d32eea0e5e95c399a43705f1c96 Fixes: commit 12fc392663db ("misc/trinity: Add trinity npu driver") Signed-off-by: Seung-Woo Kim --- include/uapi/misc/trinity.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/uapi/misc/trinity.h b/include/uapi/misc/trinity.h index 1136af4..91644bf 100644 --- a/include/uapi/misc/trinity.h +++ b/include/uapi/misc/trinity.h @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: GPL-2.0-only +/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /** * include/uapi/misc/trinity.h: User-level header for trinity devices. * -- 2.7.4