From nobody Thu Dec 25 12:41:25 2025 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 D454428DC0; Wed, 17 Jan 2024 23:07:21 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.133 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1705532843; cv=none; b=WkBKy1wDPk43lZ7XeQYxdg1WdH7CWjCZomjAhjXyoriuXGTqwHPcNTQcSszATDv2G/IozAv/HAQRvq+IlSNUf7sBCiiNR5E7il6WJXkjlQ0TqiWtuOb7v39R2wpZmDJmZ4nrtqo+8Rph3qZx+ZQOKShb/qwLZAPfOloto7ss9Fk= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1705532843; c=relaxed/simple; bh=DdymCnLkI27rGLQLx/CbSqqG9VBvyCiclIx2NAPLf98=; h=DKIM-Signature:Received:From:To:Cc:Subject:Date:Message-ID: X-Mailer:In-Reply-To:References:MIME-Version: Content-Transfer-Encoding; b=UEvItUAPJdAFyBrsRuxVebjT6lBMp9XQtXmSIQ2h9B5ubBJM4VnJAPDVLJj0+9sFfVq6yxibSwStt6X5QRtlMjfOYDjzesDusp6PYfbABxZpSYlASnYgzu0KxLd1/EVNgR0nDFAHjYbpfc/5Ymc/Qtc+0XO1oRKu9KgjgJ3aXFk= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org; spf=none smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=N1jpdSJ7; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="N1jpdSJ7" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: MIME-Version:References:In-Reply-To:Message-ID:Date:Subject:Cc:To:From:Sender :Reply-To:Content-Type:Content-ID:Content-Description; bh=l0w1dsym1D/QG/0mtlqKSd3j1TQngBvbzezDyJnZL68=; b=N1jpdSJ7XNunvOhxbX1M1L2rJ5 5BkibONmiWR8b3469QCpJWp1VTg1C/4hJL9oYL5qrV8jaCJRvkp4gMbVmb8EfrB4oGsbOn7r2g/Ce sD6oPLKpJkTdyq/pmi+z6FedH5GNDjr952hWAmHX+XlY4cDcCDZoCl/mJ3wDGpsaUdc+OQU4TMbQM cKauxSRRKsPiHyb1a/DWfLFaVW+5smRb9ylQK6FJ2GE+qm1ec5hwBIAvS+wVxuO4Cyv+36+qMGusH gINFg2tPJ89ogG4wu8Oai/iIxDImrx/H9wvqpeWTYewYBomCyxsSvzw9S/lLpq/Zz05r2sTL+Hv3+ xI+U/F+w==; Received: from [50.53.46.231] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.96 #2 (Red Hat Linux)) id 1rQF0C-0011su-38; Wed, 17 Jan 2024 23:07:21 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Marc Zyngier , Oliver Upton , James Morse , Suzuki K Poulose , Zenghui Yu , linux-arm-kernel@lists.infradead.org, kvmarm@lists.linux.dev, Catalin Marinas , Will Deacon Subject: [PATCH 09/10] KVM: arm64: vgic-its: fix kernel-doc warnings Date: Wed, 17 Jan 2024 15:07:13 -0800 Message-ID: <20240117230714.31025-10-rdunlap@infradead.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240117230714.31025-1-rdunlap@infradead.org> References: <20240117230714.31025-1-rdunlap@infradead.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Correct the function parameter name "@save tables" -> "@save_tables". Use the "typedef" keyword in the kernel-doc comment for a typedef. These changes prevent kernel-doc warnings: vgic/vgic-its.c:174: warning: Function parameter or struct member 'save_tab= les' not described in 'vgic_its_abi' arch/arm64/kvm/vgic/vgic-its.c:2152: warning: expecting prototype for entry= _fn_t(). Prototype was for int() instead Signed-off-by: Randy Dunlap Cc: Marc Zyngier Cc: Oliver Upton Cc: James Morse Cc: Suzuki K Poulose Cc: Zenghui Yu Cc: linux-arm-kernel@lists.infradead.org Cc: kvmarm@lists.linux.dev Cc: Catalin Marinas Cc: Will Deacon --- arch/arm64/kvm/vgic/vgic-its.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -- a/arch/arm64/kvm/vgic/vgic-its.c b/arch/arm64/kvm/vgic/vgic-its.c --- a/arch/arm64/kvm/vgic/vgic-its.c +++ b/arch/arm64/kvm/vgic/vgic-its.c @@ -158,7 +158,7 @@ struct vgic_translation_cache_entry { * @cte_esz: collection table entry size * @dte_esz: device table entry size * @ite_esz: interrupt translation table entry size - * @save tables: save the ITS tables into guest RAM + * @save_tables: save the ITS tables into guest RAM * @restore_tables: restore the ITS internal structs from tables * stored in guest RAM * @commit: initialize the registers which expose the ABI settings, @@ -2139,7 +2139,7 @@ static u32 compute_next_eventid_offset(s } =20 /** - * entry_fn_t - Callback called on a table entry restore path + * typedef entry_fn_t - Callback called on a table entry restore path * @its: its handle * @id: id of the entry * @entry: pointer to the entry