From nobody Mon Apr 6 20:12:44 2026 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 C5D0D3A0B31; Wed, 18 Mar 2026 09:11:20 +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=1773825080; cv=none; b=rk5TNm7ol9ZctVihre1ctYkSK4t8kOsbDEfkvFxnUQR+9Sim/hbw+9dg3XB8j6c72ngSfdnH0ppEves/f9WVxGBa12WxdICMyowr4IoQzc/3Dhij270WSpZqm2AJcFBI4CV8Iwb/GSRZvRj7xk6spuMhlSN7n+5YO+gs/FoXHbw= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773825080; c=relaxed/simple; bh=XRb9wdHvGdnLc5i1pCfLDXwMgE/fB9jkCFBFCvRmepQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=gmhC330P0vHCjXsKLRxI3ocCxAaep9EIgcOXses+9Xy15rOmP1WKPJQQtclKhKrskhwkRhbiBATqleAzJfPDAZkyJmTPHpEiMbYm+QjMQp7ydlG4h5726kIeT/5qxArL3MEuizMR7RqJJO89qZKj5N2lGM/3r/kwG74vfd1z1Ck= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=W27qKi6o; 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="W27qKi6o" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 63431C2BCAF; Wed, 18 Mar 2026 09:11:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1773825080; bh=XRb9wdHvGdnLc5i1pCfLDXwMgE/fB9jkCFBFCvRmepQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=W27qKi6oYog/DKduY2jn35lbmNzVyIsQg9G+h2aEp1KRr4dEAhhrlpxM1TwZL8y/0 Jn1dW8AFsJrsg7UGhCRkmK0+DwBQAPZQMM/OmI1w3lXAkuPpCAKhGMPRQ4tbMRf5Es o9iWo3+0yOHQIfwSvUn7FVdSrOy+2geLYSA815Re/Fh0XvFPdqq2mUly5cbA1V8Xri EwLbjVaHg09e4I38AsXgwDc3qLDroZhvb2ksgOKVx7qmAPVHBNeKbzdXyLIXtnqnOZ 6vPCisvmIcwacSZkrThEZZmgThO16ZNb+U0ohg+eCMEi8KajjGso7YNc/zOWbox/X/ s3GJnc7SPZZtg== Received: from mchehab by mail.kernel.org with local (Exim 4.99.1) (envelope-from ) id 1w2mvu-00000002fpe-2XP9; Wed, 18 Mar 2026 10:11:18 +0100 From: Mauro Carvalho Chehab To: Jonathan Corbet , Linux Doc Mailing List Cc: Mauro Carvalho Chehab , linux-kernel@vger.kernel.org, Mauro Carvalho Chehab Subject: [PATCH 06/14] docs: kdoc_item: fix initial value for parameterdesc_start_lines Date: Wed, 18 Mar 2026 10:11:06 +0100 Message-ID: <1b4ea24dd4cd82e6711e9be80168684427d74c30.1773823995.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: References: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: Mauro Carvalho Chehab Ensure that parameterdesc_start_lines is a dict at init time, as this is how it will be set later on at the parser. Signed-off-by: Mauro Carvalho Chehab --- tools/lib/python/kdoc/kdoc_item.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/lib/python/kdoc/kdoc_item.py b/tools/lib/python/kdoc/kdo= c_item.py index 2b8a93f79716..c0585cdbcbd1 100644 --- a/tools/lib/python/kdoc/kdoc_item.py +++ b/tools/lib/python/kdoc/kdoc_item.py @@ -22,7 +22,7 @@ class KdocItem: self.sections =3D {} self.sections_start_lines =3D {} self.parameterlist =3D [] - self.parameterdesc_start_lines =3D [] + self.parameterdesc_start_lines =3D {} self.parameterdescs =3D {} self.parametertypes =3D {} # --=20 2.53.0