From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on archive.lwn.net X-Spam-Level: X-Spam-Status: No, score=-5.8 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=ham autolearn_force=no version=3.4.2 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by archive.lwn.net (Postfix) with ESMTP id 353227D04D for ; Fri, 8 Mar 2019 03:51:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726250AbfCHDv2 (ORCPT ); Thu, 7 Mar 2019 22:51:28 -0500 Received: from bombadil.infradead.org ([198.137.202.133]:52714 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726248AbfCHDv1 (ORCPT ); Thu, 7 Mar 2019 22:51:27 -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:In-Reply-To:MIME-Version:Date:Message-ID:From:References:Cc:To: Subject:Sender:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=2mqmIhNNu2ViXSd4nQ1v+FGWQsQv77TjYllAwKK3HbI=; b=hATF+G+PEBCLc3+jvymBO1mHd Sk/RswNAuc0e9Ju4oxk9Um2j6XlS8SAImZTkDvoBEfPl0zpsfRGBNcyC1U7Ieb9XSC6exD7mtLSIp qhmMQj/WOZ8HVOCXrh0Aw+yBMzTDGut5loXPNXKylrxcozSaPDAkr3d9hBZX+qEW/YVUXrHbJrAF/ ORwpm1lbaINiOyEWsB2J56gD//0k1zsIzdevnIbW8gKUDNYlxVdqBaXhdGtJfqOOX0ZEA1+sHthx0 3+6kFCuVXC6qyjXHZUKYWIhc2VdZhuVpcOaL3jyhVhvM+b2mbkUR6hqo9XnEoFLs6K8sAqxrh/uwH 7lbO9EfyQ==; Received: from static-50-53-52-16.bvtn.or.frontiernet.net ([50.53.52.16] helo=midway.dunlab) by bombadil.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1h26Xf-00010Z-Ap; Fri, 08 Mar 2019 03:51:27 +0000 Subject: Re: [PATCH 7/9] docs: Remove unknown 'hint' directive To: "Tobin C. Harding" , Jonathan Corbet Cc: linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org References: <20190307211153.28400-1-tobin@kernel.org> <20190307211153.28400-8-tobin@kernel.org> From: Randy Dunlap Message-ID: <77efd92e-f882-bb32-e58c-6836e4307744@infradead.org> Date: Thu, 7 Mar 2019 19:51:26 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.5.1 MIME-Version: 1.0 In-Reply-To: <20190307211153.28400-8-tobin@kernel.org> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-doc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-doc@vger.kernel.org On 3/7/19 1:11 PM, Tobin C. Harding wrote: > Current RST file contains an unknown directive causing Sphinx to emit > > ERROR: Unexpected indentation. > > Use normal language construct instead. > > Signed-off-by: Tobin C. Harding This is a good idea. My previous patch eliminated the warning but the ..hint is not presented very well in the generated output. :) Thanks. > --- > Documentation/driver-api/dmaengine/dmatest.rst | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/Documentation/driver-api/dmaengine/dmatest.rst b/Documentation/driver-api/dmaengine/dmatest.rst > index 8d81f1a7169b..25eecd2769b0 100644 > --- a/Documentation/driver-api/dmaengine/dmatest.rst > +++ b/Documentation/driver-api/dmaengine/dmatest.rst > @@ -59,8 +59,8 @@ parameter, that specific channel is requested using the dmaengine and a thread > is created with the existing parameters. This thread is set as pending > and will be executed once run is set to 1. Any parameters set after the thread > is created are not applied. > -.. hint:: > - available channel list could be extracted by running the following command:: > + > +Hint: available channel list could be extracted by running the following command:: > > % ls -1 /sys/class/dma/ > > -- ~Randy