From mboxrd@z Thu Jan 1 00:00:00 1970 From: Minkyu Kang Date: Mon, 02 Nov 2015 14:38:57 +0900 Subject: [U-Boot] [PATCH 1/5] arm: exynos: clean up checkpatch issues In-Reply-To: <5629F087.1070206@samsung.com> References: <5629F087.1070206@samsung.com> Message-ID: <5636F6F1.9070302@samsung.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 23/10/15 17:32, Minkyu Kang wrote: > This patch will fix these checkpatch issues. > > ERROR: Macros with complex values should be enclosed in parentheses > +#define DEFAULT_DQS_X4 (DEFAULT_DQS << 24) || (DEFAULT_DQS << 16) \ > + || (DEFAULT_DQS << 8) || (DEFAULT_DQS << 0) > > ERROR: space prohibited before that ',' (ctx:WxW) > + writel(val , &drex0->concontrol); > ^ > > ERROR: space prohibited before that ',' (ctx:WxW) > + writel(val , &drex1->concontrol); > ^ > > Signed-off-by: Minkyu Kang > --- > arch/arm/mach-exynos/dmc_init_ddr3.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > applied to u-boot-samsung. Thanks, Minkyu Kang.