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=-10.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT 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 8F0CBC3F2D8 for ; Tue, 3 Mar 2020 15:50:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 5BF7820828 for ; Tue, 3 Mar 2020 15:50:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1583250651; bh=+shblSsqCNpI+F1Vxv+7A0G+8FOQYxCRqXy2XQEABdI=; h=From:Cc:Subject:Date:In-Reply-To:References:To:List-ID:From; b=oCIuqFdhawHg8SWCRNjhTz/XYJYT9SQByGllYJfU8jaeLDxrfmGZ7NtZt8F63rigy Z6T82Zshg5I/orJ1KTSDQ+I1CZ2FUIa4HB7VcNylTn70althf7j118lw7lsGWBmfq/ P3wHp/D2whH/frMJKeYB0moIcWUw0T9kpC+IxxD0= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729099AbgCCPuu (ORCPT ); Tue, 3 Mar 2020 10:50:50 -0500 Received: from mail.kernel.org ([198.145.29.99]:60028 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730242AbgCCPuu (ORCPT ); Tue, 3 Mar 2020 10:50:50 -0500 Received: from mail.kernel.org (ip-109-40-2-133.web.vodafone.de [109.40.2.133]) (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 C49A6206E2; Tue, 3 Mar 2020 15:50:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1583250650; bh=+shblSsqCNpI+F1Vxv+7A0G+8FOQYxCRqXy2XQEABdI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=jezWVwCYJ1CLqc9CuTO65ctCrb1XuK1y7eR0tc6Q4UMwfwbtsO3bzkFJJw+Kq3CRN HIL1e86bEf4MEiddlX0f08ghL04bWyd7xGvmp5+Bto2RcoZVfbz9nFATFMLP/HEL6z ocGJNgFM3VKJky+HCV/BI0dwA7X0jF7+66abqwEA= Received: from mchehab by mail.kernel.org with local (Exim 4.92.3) (envelope-from ) id 1j99og-001ZOu-G7; Tue, 03 Mar 2020 16:50:42 +0100 From: Mauro Carvalho Chehab Cc: Mauro Carvalho Chehab , Jonathan Corbet , Greg Kroah-Hartman , Jeff Kirsher , Saravana Kannan , linux-doc@vger.kernel.org Subject: [PATCH 4/9] docs: driver.rst: supress two ReSt warnings Date: Tue, 3 Mar 2020 16:50:34 +0100 Message-Id: <8356b02547087979f57cb71fbefb5e5f636c78f4.1583250595.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.24.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit To: unlisted-recipients:; (no To-header on input) Sender: linux-doc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-doc@vger.kernel.org Get rid of those, by marking a literal block as such: Documentation/driver-api/gpio/driver.rst:425: WARNING: Unexpected indentation. Documentation/driver-api/gpio/driver.rst:423: WARNING: Inline emphasis start-string without end-string. Signed-off-by: Mauro Carvalho Chehab --- Documentation/driver-api/driver-model/driver.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/driver-api/driver-model/driver.rst b/Documentation/driver-api/driver-model/driver.rst index baa6a85c8287..63887b813005 100644 --- a/Documentation/driver-api/driver-model/driver.rst +++ b/Documentation/driver-api/driver-model/driver.rst @@ -210,7 +210,7 @@ probed. While the typical use case for sync_state() is to have the kernel cleanly take over management of devices from the bootloader, the usage of sync_state() is not restricted to that. Use it whenever it makes sense to take an action after -all the consumers of a device have probed. +all the consumers of a device have probed:: int (*remove) (struct device *dev); -- 2.24.1