aboutsummaryrefslogtreecommitdiff
path: root/kernel/ethosu_capabilities.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/ethosu_capabilities.c')
-rw-r--r--kernel/ethosu_capabilities.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/kernel/ethosu_capabilities.c b/kernel/ethosu_capabilities.c
index 83bd8cf..2c2d23a 100644
--- a/kernel/ethosu_capabilities.c
+++ b/kernel/ethosu_capabilities.c
@@ -1,5 +1,6 @@
/*
- * Copyright 2022-2023 Arm Limited and/or its affiliates
+ * SPDX-FileCopyrightText: Copyright 2022-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,7 +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
*/
/****************************************************************************
@@ -123,8 +123,8 @@ int ethosu_capabilities_request(struct device *dev,
if (ret < 0)
goto kfree;
- dev_info(dev, "Capabilities create. Id=%d, handle=0x%p\n",
- cap->msg.id, cap);
+ dev_dbg(dev, "Capabilities create. Id=%d, handle=0x%p\n",
+ cap->msg.id, cap);
ret = ethosu_capabilities_send(cap, mailbox);
if (0 != ret)
@@ -156,8 +156,8 @@ deregister:
ethosu_mailbox_deregister(mailbox, &cap->msg);
kfree:
- dev_info(dev, "Capabilities destroy. Id=%d, handle=0x%p\n",
- cap->msg.id, cap);
+ dev_dbg(dev, "Capabilities destroy. Id=%d, handle=0x%p\n",
+ cap->msg.id, cap);
devm_kfree(dev, cap);
return ret;