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=-5.0 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS,USER_AGENT_SANE_1 autolearn=ham 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 06B07C35254 for ; Mon, 10 Feb 2020 03:53:21 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B9AF820870 for ; Mon, 10 Feb 2020 03:53:20 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="tkQVblP/" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727363AbgBJDxU (ORCPT ); Sun, 9 Feb 2020 22:53:20 -0500 Received: from bombadil.infradead.org ([198.137.202.133]:48322 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726944AbgBJDxT (ORCPT ); Sun, 9 Feb 2020 22:53:19 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Content-Transfer-Encoding: Content-Type:MIME-Version:Date:Message-ID:Subject:From:To:Sender:Reply-To:Cc: Content-ID:Content-Description:In-Reply-To:References; bh=Vjbb/KdteHQAi18CNlMEoi7YtSU7M1n22U0ASM+2miA=; b=tkQVblP/JrGsAbn8GCicUcTxcM FfdV2AieTLHAWx1K6ItImexZ0V5qqkO7V8vKJNngaBt5sf1fN/O0k7DVhpA++RlZBOMyNitfWd75w SYqscXyqY7rcIWInxP9c1hqT0E6BQmdgXasFdqVREQUg45loR7e6DvsTmIv1zS5hroXb+RpyaISTE MDaHHLKLH3fZK3I3W76eeJ+gTHQwbwSnOKtOorFjAMTLHSYdmuxPncB6c0yveslbHGIp9CrcFsdEL zxIPxoM/r4476G7blvYQW8O3YfgJRUY4ZKNQol7C7KBKcuw+F3gYeSd3OrxgDYRt3b6g3dagN/Wvf DV9elrkA==; Received: from [2601:1c0:6280:3f0::19c2] by bombadil.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1j108M-0000Uf-8k; Mon, 10 Feb 2020 03:53:18 +0000 To: LKML , Steven Rostedt , Masami Hiramatsu From: Randy Dunlap Subject: [PATCH] Documentation: bootconfig: fix Sphinx block warning Message-ID: <07b3e31f-9b1e-1876-aa60-4436e4dd6da0@infradead.org> Date: Sun, 9 Feb 2020 19:53:17 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.4.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Randy Dunlap Fix Sphinx format warning: lnx-56-rc1/Documentation/admin-guide/bootconfig.rst:26: WARNING: Literal block expected; none found. Signed-off-by: Randy Dunlap Cc: Steven Rostedt Cc: Masami Hiramatsu --- Documentation/admin-guide/bootconfig.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- lnx-56-rc1.orig/Documentation/admin-guide/bootconfig.rst +++ lnx-56-rc1/Documentation/admin-guide/bootconfig.rst @@ -23,7 +23,7 @@ of dot-connected-words, and key and valu has to be terminated by semi-colon (``;``) or newline (``\n``). For array value, array entries are separated by comma (``,``). :: -KEY[.WORD[...]] = VALUE[, VALUE2[...]][;] + KEY[.WORD[...]] = VALUE[, VALUE2[...]][;] Unlike the kernel command line syntax, spaces are OK around the comma and ``=``.