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 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 82736ECAAD2 for ; Thu, 1 Sep 2022 07:01:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=BZJWNqLjHXoERgwgcnWXg35n1d4eslAnCQe7asq3g7w=; b=gr26psB9OpR5NC Gefbtt4h89IhDZMTtsV97UL1aV8JvXIf7LSJnxAgJais7Fox9MYtgHINzA7D2+Hvmdyt2ZOM2SKGL rKAINaOdQrdDCR/TlHaG3VJlgjzixS0rZASyt1gXprtorJku3EQHceFW2GbPKlHFQZGLF1x+7g2zj RC2GUiIaW52qGzWMhnFZwih6d75xHNnaXSezpNU17xxh/QPuXdWdx4af+BxboqpR+P0VUm+0V8zQQ /aMbRCQTGtVYWy/GyZqTM9iHWHVgEgWTwuNeo9orGEqmIYHDJwTnIyc+tcTamj9KLEByhafgfwD1r bfE5CjNEtNNCi0L0ChVA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1oTeBH-00A99b-T1; Thu, 01 Sep 2022 07:00:04 +0000 Received: from mail.skyhub.de ([2a01:4f8:190:11c2::b:1457]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1oTeBC-00A8yt-Hg for linux-arm-kernel@lists.infradead.org; Thu, 01 Sep 2022 07:00:02 +0000 Received: from nazgul.tnic (unknown [84.201.196.28]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.skyhub.de (SuperMail on ZX Spectrum 128k) with ESMTPSA id 3C72F1EC0409; Thu, 1 Sep 2022 08:59:43 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=alien8.de; s=dkim; t=1662015583; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:in-reply-to:in-reply-to: references:references; bh=mZKc6wmNg1eKrRkSc0tVYSpR5yDgCQZI71NJKLH/SRY=; b=DzUVkwEI1DtVr+EOHpO+sOLT2Iej7olVzcv9IKdxyOonl9C4m2P7qqv5eNpqofQATP+lMY o9rYL01guwcnuzUyQnJjUHI0FmTViAPgNqTlr7GQZITddfrsHVzNXlR/tvJktZ+dwTS5F+ xxVBliA1IAcQRbWFYPIvVl6iN/TwliI= Date: Thu, 1 Sep 2022 08:59:49 +0200 From: Borislav Petkov To: Serge Semin Cc: Rob Herring , Michal Simek , Mauro Carvalho Chehab , Tony Luck , James Morse , Robert Richter , Serge Semin , Alexey Malahov , Michail Ivanov , Pavel Parkhomenko , Punnaiah Choudary Kalluri , Manish Narani , Dinh Nguyen , Rob Herring , Krzysztof Kozlowski , devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-edac@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 12/20] EDAC/mc: Replace spaces with tabs in memtype flags definition Message-ID: References: <20220822190730.27277-1-Sergey.Semin@baikalelectronics.ru> <20220822190730.27277-13-Sergey.Semin@baikalelectronics.ru> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20220822190730.27277-13-Sergey.Semin@baikalelectronics.ru> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220831_235958_794649_74920606 X-CRM114-Status: GOOD ( 10.53 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Mon, Aug 22, 2022 at 10:07:22PM +0300, Serge Semin wrote: > Currently the memory type macros are partly defined with the multiple > spaces between the macro name and its definition. Let's replace the spaces > with tabs as the kernel coding style requires. > > Signed-off-by: Serge Semin > --- > include/linux/edac.h | 30 +++++++++++++++--------------- > 1 file changed, 15 insertions(+), 15 deletions(-) Applied, thanks. -- Regards/Gruss, Boris. https://people.kernel.org/tglx/notes-about-netiquette _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel