From patchwork Mon Feb 3 13:37:01 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lukas Wunner X-Patchwork-Id: 861636 Received: from mailout3.hostsharing.net (mailout3.hostsharing.net [176.9.242.54]) (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 53642201026 for ; Mon, 3 Feb 2025 13:44:56 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=176.9.242.54 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1738590300; cv=none; b=HrqU0/uHCZyro9gdyn25JzaGQ74Xgu3oCqZIBYUDrTztXJ2QDpUmUCoA6qDDp3hBaLHr4S74sm8Xxd47YGsmoXxJEruFASucgHaTJvg3ynjthlgWbsKXq9PYxEDJdX3UDzsVgKq4KDSrvXOaMo3Uxhtf5kaUHIc5M0IcSrvBpig= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1738590300; c=relaxed/simple; bh=9wHzKxaKrZ6WOM19ib3N/TZvqBRfBKfjWFnbI0sf11k=; h=Message-ID:In-Reply-To:References:From:Date:Subject:To:Cc; b=Xgf0cWwP2epP2a4FhDR46rPwqGj3DcRzvFbIJ6L7JI3NFY5O2tmLFW/t6evDDjUc+4tp2n+xgYZqV1O6kSx0VSts+iKDD4d/qoQJ0A2Pbp0bbfh+IQ59ZCsMkVK2uXkvmiLZ+6GkN3ahsH+oqRUdQmCKweYbdMqZUzZAkbddm4I= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=wunner.de; spf=pass smtp.mailfrom=wunner.de; arc=none smtp.client-ip=176.9.242.54 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=wunner.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=wunner.de Received: from h08.hostsharing.net (h08.hostsharing.net [IPv6:2a01:37:1000::53df:5f1c:0]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "*.hostsharing.net", Issuer "RapidSSL TLS RSA CA G1" (verified OK)) by mailout3.hostsharing.net (Postfix) with ESMTPS id 44275101E6A35; Mon, 3 Feb 2025 14:44:54 +0100 (CET) Received: from localhost (unknown [89.246.108.87]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (prime256v1) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by h08.hostsharing.net (Postfix) with ESMTPSA id DAF546087DD7; Mon, 3 Feb 2025 14:44:53 +0100 (CET) X-Mailbox-Line: From 425ad57ca42ac6b19a61ed87051b05fe2b5170ff Mon Sep 17 00:00:00 2001 Message-ID: <425ad57ca42ac6b19a61ed87051b05fe2b5170ff.1738562694.git.lukas@wunner.de> In-Reply-To: References: From: Lukas Wunner Date: Mon, 3 Feb 2025 14:37:01 +0100 Subject: [PATCH 1/5] crypto: virtio - Fix kernel-doc of virtcrypto_dev_stop() To: Herbert Xu , "David S. Miller" , "Michael S. Tsirkin" , Jason Wang , Gonglei Cc: zhenwei pi , Xuan Zhuo , Eugenio Perez , linux-crypto@vger.kernel.org, virtualization@lists.linux.dev Precedence: bulk X-Mailing-List: linux-crypto@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: It seems the kernel-doc of virtcrypto_dev_start() was copied verbatim to virtcrypto_dev_stop(). Fix it. Signed-off-by: Lukas Wunner --- drivers/crypto/virtio/virtio_crypto_mgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/crypto/virtio/virtio_crypto_mgr.c b/drivers/crypto/virtio/virtio_crypto_mgr.c index 70e778aac0f2..bddbd8ebfebe 100644 --- a/drivers/crypto/virtio/virtio_crypto_mgr.c +++ b/drivers/crypto/virtio/virtio_crypto_mgr.c @@ -256,7 +256,7 @@ int virtcrypto_dev_start(struct virtio_crypto *vcrypto) * @vcrypto: Pointer to virtio crypto device. * * Function notifies all the registered services that the virtio crypto device - * is ready to be used. + * shall no longer be used. * To be used by virtio crypto device specific drivers. * * Return: void