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.8 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 541AEC4727F for ; Tue, 6 Oct 2020 14:05:17 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id EFD952078E for ; Tue, 6 Oct 2020 14:05:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601993117; bh=FAz68Gpz6mwGMLMcTnrOG5cmfJRovbY6MFVW9r+Stmw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=QldKQ1UVzKnLfnIOH9Flp0qtuY78JbZnTdbU2/o3hbIjf/D31+9ztI4isKt832exH lTh6anmwXnidZn+pgM1oIfcxZ2Y8oci1SVKF/YIn/TWpttouJ/41/oVvbLbtfjQalI nv+I2P+AOmjNhDWfVpaB4UwL1TogHOlLtq2IWsT0= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726812AbgJFOFQ (ORCPT ); Tue, 6 Oct 2020 10:05:16 -0400 Received: from mail.kernel.org ([198.145.29.99]:33164 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726534AbgJFOD4 (ORCPT ); Tue, 6 Oct 2020 10:03:56 -0400 Received: from mail.kernel.org (ip5f5ad5bd.dynamic.kabel-deutschland.de [95.90.213.189]) (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 2097B23731; Tue, 6 Oct 2020 14:03:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601993035; bh=FAz68Gpz6mwGMLMcTnrOG5cmfJRovbY6MFVW9r+Stmw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=qtfZTDg28xla0wewpUgBEpPXY87zAp6DTjb7gfz7x+5ERi9ZbtHG9b5+1Ehwwz1sK r1AiHH3eydJsp5SenkTIbJ79wCPnKWstE0Ev8eTW38OQbc88esAZ7Vh/WaEnOrH4uP HvUd4jSNjFQDNCpWSzrJruYMtYkxl5rsXlsqsz4o= Received: from mchehab by mail.kernel.org with local (Exim 4.94) (envelope-from ) id 1kPnZJ-0019Gu-8i; Tue, 06 Oct 2020 16:03:53 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List , Jonathan Corbet Cc: Mauro Carvalho Chehab , linux-kernel@vger.kernel.org Subject: [PATCH v5 52/52] docs: conf.py: change the Sphinx 3.x+ text Date: Tue, 6 Oct 2020 16:03:49 +0200 Message-Id: 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 After the build fix patches, it is believed that the output with Sphinx 3.x won't be a problem. Still, the C domain support was re-written, and this can have caused hidden issues. So, let's keep the warning, changing it to a lighter warning text. Signed-off-by: Mauro Carvalho Chehab --- Documentation/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/conf.py b/Documentation/conf.py index b402bd8f6f71..4f5d15abd047 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py @@ -47,8 +47,8 @@ extensions = ['kerneldoc', 'rstFlatTable', 'kernel_include', # if major >= 3: sys.stderr.write('''WARNING: The kernel documentation build process - does not work correctly with Sphinx v3.0 and above. Expect errors - in the generated output. + support for Sphinx v3.0 and above is brand new. Be prepared for + possible issues in the generated output. ''') if minor > 0 or patch >= 2: # Sphinx c function parser is more pedantic with regards to type -- 2.26.2