From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1F991C433E7 for ; Tue, 13 Oct 2020 12:16:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D504E2227E for ; Tue, 13 Oct 2020 12:16:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1602591384; bh=SmAgTq3qlJUPZtrrcPlH7p0JPW+Do0b4aKXp0589oHY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=JYA6Pwou94R5+buoCJbsFNHvMzwyZmJuCtoqYK5FUJLytYmjMiXn6eptfEE+Ajd6E 0CMYvu1l1jvjlOkFfzVvc9MoPF7ppusS2luwN4UVDrSfJJv6cBTB7l9pUgRQVTGUKV PbSqMEBvDe/0SiOFDzggKpKN39jyQm7M5pKbplvk= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727050AbgJMMO5 (ORCPT ); Tue, 13 Oct 2020 08:14:57 -0400 Received: from mail.kernel.org ([198.145.29.99]:40960 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726707AbgJMMOz (ORCPT ); Tue, 13 Oct 2020 08:14:55 -0400 Received: from mail.kernel.org (ip5f5ad5b2.dynamic.kabel-deutschland.de [95.90.213.178]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id E60CB2222C; Tue, 13 Oct 2020 12:14:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1602591295; bh=SmAgTq3qlJUPZtrrcPlH7p0JPW+Do0b4aKXp0589oHY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=UHWDy6x9LyZBs2RM8reUONi7qqPamxctAKrwLfsf9V10aSgSMsXZRRei0DlXADgcw cHT64Igf3Q3maW8H/xrrlaUFV6v8Tl7205eOC/stw2M1ybK65OPDotSQmKi/OKMBYX YNnXcYz4ChQ6LWhHr3euOvgeQ+rJG9wpbCG/6mss= Received: from mchehab by mail.kernel.org with local (Exim 4.94) (envelope-from ) id 1kSJCf-006CoL-2E; Tue, 13 Oct 2020 14:14:53 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Cc: Mauro Carvalho Chehab , "Jonathan Corbet" , linux-kernel@vger.kernel.org Subject: [PATCH v2 14/24] docs: conf.py: disable automarkup for Sphinx 3.x Date: Tue, 13 Oct 2020 14:14:41 +0200 Message-Id: <8394c44d193d78cd5378fe23fa9f0a2d8a9f6b33.1602590106.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: Mauro Carvalho Chehab Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The class types changed after the C domain rewrite on Sphinx 3.x. Due to that, the automarkup extension is just generating additional noise when trying to convert structs and other markups into cross references. Signed-off-by: Mauro Carvalho Chehab --- Documentation/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Documentation/conf.py b/Documentation/conf.py index 376dd0ddf39c..4f5d15abd047 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py @@ -37,7 +37,7 @@ needs_sphinx = '1.3' # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = ['kerneldoc', 'rstFlatTable', 'kernel_include', - 'kfigure', 'sphinx.ext.ifconfig', 'automarkup', + 'kfigure', 'sphinx.ext.ifconfig', 'maintainers_include', 'sphinx.ext.autosectionlabel' ] # @@ -111,6 +111,7 @@ if major >= 3: else: extensions.append('cdomain') + extensions.append('automarkup') # Ensure that autosectionlabel will produce unique names autosectionlabel_prefix_document = True -- 2.26.2