Loading drivers/soc/qcom/spcom.c +7 −2 Original line number Diff line number Diff line // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (c) 2015-2021, The Linux Foundation. All rights reserved. * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved. */ /* Loading Loading @@ -631,8 +632,12 @@ static int spcom_handle_create_channel_command(void *cmd_buf, int cmd_size) mutex_lock(&spcom_dev->chdev_count_lock); ret = spcom_create_channel_chardev(cmd->ch_name, cmd->is_sharable); mutex_unlock(&spcom_dev->chdev_count_lock); if (ret) if (ret) { if (-EINVAL == ret) spcom_pr_err("failed to create channel, ret [%d]\n", ret); else spcom_pr_err("failed to create ch[%s], ret [%d]\n", cmd->ch_name, ret); } return ret; } Loading Loading
drivers/soc/qcom/spcom.c +7 −2 Original line number Diff line number Diff line // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (c) 2015-2021, The Linux Foundation. All rights reserved. * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved. */ /* Loading Loading @@ -631,8 +632,12 @@ static int spcom_handle_create_channel_command(void *cmd_buf, int cmd_size) mutex_lock(&spcom_dev->chdev_count_lock); ret = spcom_create_channel_chardev(cmd->ch_name, cmd->is_sharable); mutex_unlock(&spcom_dev->chdev_count_lock); if (ret) if (ret) { if (-EINVAL == ret) spcom_pr_err("failed to create channel, ret [%d]\n", ret); else spcom_pr_err("failed to create ch[%s], ret [%d]\n", cmd->ch_name, ret); } return ret; } Loading