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=-8.6 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_SANE_2 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 05245C2D0E7 for ; Sun, 29 Mar 2020 09:57:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id C60A62076A for ; Sun, 29 Mar 2020 09:57:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1585475859; bh=pyqkwg7+NdzzGNrT9rgcJIqmjn1T/lyVAWcXSX9NTDA=; h=Date:From:To:Cc:Subject:In-Reply-To:References:List-ID:From; b=2WUVbvnytibR2Te7Lyhjnd5rOAGVz1FF4XCAiu6SHJpBNaz8201XTiWyse0le5K8a Mic2TYTjfm9x1Xn1eVBe7R83Vp58nHPttvmUseEYeqTnziKWApOZbH0C6fQJPEO7xV jtq4cU1k314MAxcLavNQUrWUTz5OPIOGWqjM1Zis= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727852AbgC2J5i (ORCPT ); Sun, 29 Mar 2020 05:57:38 -0400 Received: from mail.kernel.org ([198.145.29.99]:52898 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727801AbgC2J5i (ORCPT ); Sun, 29 Mar 2020 05:57:38 -0400 Received: from archlinux (cpc149474-cmbg20-2-0-cust94.5-4.cable.virginm.net [82.4.196.95]) (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 BFD3520675; Sun, 29 Mar 2020 09:57:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1585475857; bh=pyqkwg7+NdzzGNrT9rgcJIqmjn1T/lyVAWcXSX9NTDA=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=PwqCrr7vnz4T0XKia7xKuKD6Al6Exm48qFPgQRTnAIwGlFGf6WQIwO7yuBzBkie5V Sgwe/WsUVje38l3MV0usQO243dnTlVYaBDhqe90WbcD3vXhVcn/VFXISHf3X4gn6ST 6cKa58mv4Ae4qBRv4YcnGl40OIkfTnl6Yzoh/xDk= Date: Sun, 29 Mar 2020 10:57:32 +0100 From: Jonathan Cameron To: Alexandru Ardelean Cc: , , , , , , , , , Subject: Re: [PATCH v13 1/8] include: fpga: adi-axi-common.h: fixup whitespace tab -> space Message-ID: <20200329105732.479d090f@archlinux> In-Reply-To: <20200324134636.64643-2-alexandru.ardelean@analog.com> References: <20200324134636.64643-1-alexandru.ardelean@analog.com> <20200324134636.64643-2-alexandru.ardelean@analog.com> X-Mailer: Claws Mail 3.17.4 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On Tue, 24 Mar 2020 15:46:29 +0200 Alexandru Ardelean wrote: > The initial version use a tab between '#define' & 'ADI_AXI_REG_VERSION'. > This changes it to space. The change is purely cosmetic. > > Acked-by: Moritz Fischer > Signed-off-by: Alexandru Ardelean Applied to the togreg branch of iio.git and pushed out as testing for the autobuilders to play with it. Note this won't make the coming merge window. Thanks, Jonathan > --- > include/linux/fpga/adi-axi-common.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/linux/fpga/adi-axi-common.h b/include/linux/fpga/adi-axi-common.h > index 7fc95d5c95bb..ebd4e07ae3d8 100644 > --- a/include/linux/fpga/adi-axi-common.h > +++ b/include/linux/fpga/adi-axi-common.h > @@ -11,7 +11,7 @@ > #ifndef ADI_AXI_COMMON_H_ > #define ADI_AXI_COMMON_H_ > > -#define ADI_AXI_REG_VERSION 0x0000 > +#define ADI_AXI_REG_VERSION 0x0000 > > #define ADI_AXI_PCORE_VER(major, minor, patch) \ > (((major) << 16) | ((minor) << 8) | (patch))