From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 2036E395260 for ; Mon, 16 Mar 2026 12:13:52 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773663233; cv=none; b=bm05DEB743nP2MrZgtNxVgBrRye3aEHMWnWNHh4fcAvgSx99HpVU+ZYgrjnpTBePUeL45SarMIHBXYXyRu69tPp1qurS01XZTzPgMTkWdnqBdyN0Z0NneF/9ho73bQbSI9Z2vxtcASLnN579osqgqePKpmeap9DOJG1MoqNHurk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773663233; c=relaxed/simple; bh=DZF8RQTV6aJ2uRq8LUwihfRLKfkfnTD1aS1xgAD0hkg=; h=Message-ID:Date:MIME-Version:Subject:To:References:From: In-Reply-To:Content-Type; b=b1qKb/egGzfV8NxeJxrfA0WYEtqmg96ui6cAF2d/YyeCc6mO+ehrXZpg7TsqLlBJ9QhZe4nT9RN/WjGZjwebT5LXJaAM8lia1gLy98mSzE2gHDbx5/0MbZWKPGdeVgKLRvp+C5AtlVpowsO5X+tCpij1hTeAISBKr56o//dXBMw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=lnfoXNay; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="lnfoXNay" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 78A54C19425; Mon, 16 Mar 2026 12:13:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1773663232; bh=DZF8RQTV6aJ2uRq8LUwihfRLKfkfnTD1aS1xgAD0hkg=; h=Date:Subject:To:References:From:In-Reply-To:From; b=lnfoXNayeHwsrusxC2iW0jeTYZbzoWivvyZB2oi42elUSMZyw5+wC7Us5bJwHdiDD hm+VrRjeFZgKgRAHChsJ7TMl1pa2GSnr1XLMybYnIvJRSbKD4HA+RNiikacosaRnC5 cJeVUarjexv+wKjjWaeuMasuEPk5Llkog4yk935Y8wEAnBdbUFOx8FjZsvRA53k9c7 U92yT0kglrTAKp4sqKok8cx2kVLHIcIXQ+r+htbaMDMyniswNjB+RWuWpuxtTAwKHf v3b5qnm+flYlJsodKo4Nqw0cceU1uNTuFiuHLGfycDACFXUVBL2wwIYwWu1wib7GP3 62HWlPQjSId7A== Message-ID: Date: Mon, 16 Mar 2026 07:13:51 -0500 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH 1/1] firmware: stratix10-svc: add missing comment for fcs client To: Khairul Anuar Romli , linux-kernel@vger.kernel.org References: <20260315031831.8911-1-karom.9560@gmail.com> Content-Language: en-US From: Dinh Nguyen In-Reply-To: <20260315031831.8911-1-karom.9560@gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Hi Khairul, On 3/14/26 22:18, Khairul Anuar Romli wrote: > Add the missing comment describing the fcs client as "fpga crypto services" > in the SVC client list. This keeps the documentation consistent with other > clients (fpga, rsu, hwmon) and improves readibility and mantainability. > > Signed-off-by: Khairul Anuar Romli > --- > include/linux/firmware/intel/stratix10-svc-client.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/include/linux/firmware/intel/stratix10-svc-client.h b/include/linux/firmware/intel/stratix10-svc-client.h > index d290060f4c73..74adf34d6142 100644 > --- a/include/linux/firmware/intel/stratix10-svc-client.h > +++ b/include/linux/firmware/intel/stratix10-svc-client.h > @@ -12,6 +12,7 @@ > * > * fpga: for FPGA configuration > * rsu: for remote status update > + * fcs: for fpga crypto services Thanks for your patch, but for now there is no fcs in the driver yet. In order to minimize churn, we'll add this when there is an fcs driver. Dinh