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=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 DAFFDC2BA19 for ; Tue, 14 Apr 2020 16:54:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id AB5FC2075E for ; Tue, 14 Apr 2020 16:54:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1586883281; bh=2dtxiXcqpLlxzQY41glPzfxzzobbNtue35byn94ocz8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=Cu6I1jp6Iey9ZLqeVJYhyy60eU13QK5Te7YwoCL3xVnsq+x5zcII21zLsjSPjxeUl TiaSHeTCXP4XsAq/4bJimVl+gKjwS2BHMZv3XU6Pa9RHkNUlhTiOM/cwUSGiWlcr/c zRFCy82XrZZjHMCl4NFEcIUGqlqEwpbWsNHv7emE= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2391293AbgDNQyk (ORCPT ); Tue, 14 Apr 2020 12:54:40 -0400 Received: from mail.kernel.org ([198.145.29.99]:55214 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2439740AbgDNQtO (ORCPT ); Tue, 14 Apr 2020 12:49:14 -0400 Received: from mail.kernel.org (ip5f5ad4d8.dynamic.kabel-deutschland.de [95.90.212.216]) (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 D198C21841; Tue, 14 Apr 2020 16:49:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1586882943; bh=2dtxiXcqpLlxzQY41glPzfxzzobbNtue35byn94ocz8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=BTcUVYT35Bif541OWFBjhRZVaczzSVCp/TLrRGiS4EnMeiYgLfYgyso427WtnNRZ8 CxgcFeDZrtiUdWrEnsWCRmmSesDtNpmgiPhn/ChY5oiAWEnzmlqw5Q9KbnNsqE4GTq zG8bwaaGcc+RQV6XJI5S7iodrRD1buFn/CF8eMcc= Received: from mchehab by mail.kernel.org with local (Exim 4.92.3) (envelope-from ) id 1jOOk9-0068mK-45; Tue, 14 Apr 2020 18:49:01 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Cc: Mauro Carvalho Chehab , linux-kernel@vger.kernel.org, Jonathan Corbet , Mark Brown , linux-spi@vger.kernel.org Subject: [PATCH v2 18/33] docs: spi: spi.h: fix a doc building warning Date: Tue, 14 Apr 2020 18:48:44 +0200 Message-Id: <1c701b3ac903dc0bc304dca958fbdee53bd38dc3.1586881715.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.25.2 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org We need to add a blank line to avoid this warning: ./include/linux/spi/spi.h:401: WARNING: Unexpected indentation. Signed-off-by: Mauro Carvalho Chehab --- include/linux/spi/spi.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/spi/spi.h b/include/linux/spi/spi.h index 38286de779e3..aac57b5b7c21 100644 --- a/include/linux/spi/spi.h +++ b/include/linux/spi/spi.h @@ -394,6 +394,7 @@ static inline void spi_unregister_driver(struct spi_driver *sdrv) * for example doing DMA mapping. Called from threaded * context. * @transfer_one: transfer a single spi_transfer. + * * - return 0 if the transfer is finished, * - return 1 if the transfer is still in progress. When * the driver is finished with this transfer it must -- 2.25.2