drivers: sip_svc: sip_smc_intel_socfpga: Fix type error

Fix typo error in code.

Signed-off-by: Mahesh Rao <mahesh.rao@intel.com>
This commit is contained in:
Mahesh Rao 2023-05-30 07:21:20 +00:00 committed by Carles Cufí
commit 629a6bf106
2 changed files with 2 additions and 2 deletions

View file

@ -67,7 +67,7 @@ static uint32_t intel_sip_smc_plat_format_trans_id(const struct device *dev, uin
{
ARG_UNUSED(dev);
/*combine the transaction id and client id to get the job id*/
/* Combine the transaction id and client id to get the job id*/
return (((client_idx & 0xF) << 4) | (trans_idx & 0xF));
}

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2022, Intel Corporation.
* Copyright (c) 2023, Intel Corporation.
*
* SPDX-License-Identifier: Apache-2.0
*/