From nobody Sat Oct 4 00:31:18 2025 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 A56CA31197D; Fri, 22 Aug 2025 14:19:48 +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=1755872388; cv=none; b=F//AVQtH4fcPehIUxjNrO3oMqAdmYMFB9ViSBiH6OiE6bba1rfCLAFgr+5TVjeBKrgZKegaiwg+MbugvtsCvYVweUvaISN2XmLFIW6UR77gm7ihR/zqw2a9f8KNAvFDOB71wn0UC8iK6YQrbDEDQljvStSEh0XS8mu8qt8e7kBc= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755872388; c=relaxed/simple; bh=6KNyilChtfEfKAJL2KTz7S3+EmJ+UL4s3OTBvprovpQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Y68VDYw/nomqRSEOub7Cx5CcJ9yCLS8faowqiHd+BMOi2t5dRgyMUJkF1ZtCPycfpXfQHLqqdgKVh7+imfoLPudKvE+JyYiMEBMy7mWPgapqHRu8EFwX4CWzTl88X/+5XYwypIRtxA+i5YHZ28f+pTAk8w8txWwFBfs5vCR1/iY= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=miAKsje/; 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="miAKsje/" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2BACEC2BC87; Fri, 22 Aug 2025 14:19:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1755872388; bh=6KNyilChtfEfKAJL2KTz7S3+EmJ+UL4s3OTBvprovpQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=miAKsje/nfOyunqaqtj4aa3jGRjwdsh3CVfqAUM0XNA7e0ukqTN/HJRKYVxST7EKs t9pvMB9/OHsSZdQz45SC4OmGD0xlWXWqE+jZ+qMTps+sItb44S3lgN8P/lS47ZlxVX X4Ew8ZEUoS5/7QS8bLEGVWi6ZxR8nVUwW8fa5755zdn6LMHYVmc9klkFyweHuzld+r Ff5G2Xybd23mxysIMlDrEONskhMZguzx63hxuYVCmMMdWGl6jO9XkWfX5PsXyJyai0 5rut41JyxHalBAXtdAbgzJqjolHU++Bo6vrIXx0IedNx+hTeJwuJWPXRH2pyeei0BX kqzRlP4qFg3Iw== Received: from mchehab by mail.kernel.org with local (Exim 4.98.2) (envelope-from ) id 1upScM-0000000CCrR-1RxK; Fri, 22 Aug 2025 16:19:46 +0200 From: Mauro Carvalho Chehab To: Jonathan Corbet , Linux Doc Mailing List Cc: Mauro Carvalho Chehab , "Mauro Carvalho Chehab" , linux-kernel@vger.kernel.org, linux-media@vger.kernel.org Subject: [PATCH v2 09/24] docs: uapi: media: Makefile: use parse-headers.py Date: Fri, 22 Aug 2025 16:19:21 +0200 Message-ID: <7025759744f74058eee55c35e8cd8cb5a2953fca.1755872208.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.50.1 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-Transfer-Encoding: quoted-printable Sender: Mauro Carvalho Chehab Content-Type: text/plain; charset="utf-8" Now that we have a new parser, use it. Signed-off-by: Mauro Carvalho Chehab --- Documentation/userspace-api/media/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/userspace-api/media/Makefile b/Documentation/use= rspace-api/media/Makefile index 3d8aaf5c253b..accc734d045a 100644 --- a/Documentation/userspace-api/media/Makefile +++ b/Documentation/userspace-api/media/Makefile @@ -3,7 +3,7 @@ # Rules to convert a .h file to inline RST documentation =20 SRC_DIR=3D$(srctree)/Documentation/userspace-api/media -PARSER =3D $(srctree)/Documentation/sphinx/parse-headers.pl +PARSER =3D $(srctree)/tools/docs/parse-headers.py UAPI =3D $(srctree)/include/uapi/linux KAPI =3D $(srctree)/include/linux =20 --=20 2.50.1