From patchwork Sun Jun 17 19:46:17 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Denis Efremov (Oracle)" X-Patchwork-Id: 10469201 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id DB3FB600CC for ; Sun, 17 Jun 2018 19:46:38 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id B6F89286B4 for ; Sun, 17 Jun 2018 19:46:38 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id AB168287FA; Sun, 17 Jun 2018 19:46:38 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00, MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 284E4286B4 for ; Sun, 17 Jun 2018 19:46:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933111AbeFQTqg (ORCPT ); Sun, 17 Jun 2018 15:46:36 -0400 Received: from mail-lf0-f65.google.com ([209.85.215.65]:42996 "EHLO mail-lf0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932886AbeFQTqf (ORCPT ); Sun, 17 Jun 2018 15:46:35 -0400 Received: by mail-lf0-f65.google.com with SMTP id z207-v6so133823lff.9; Sun, 17 Jun 2018 12:46:34 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=4u6MO7qzDZlb+2PafOM+SxYPn3xu/oB74O/sAPk68EA=; b=oNUWANdFw4LPM11ZfRZmQj6GjRsXjVUg39l8QlCd86BuJnZwtdtZ4IjPFtjyNeo4eY IrLsPAn93loSKskGFFp7dbAartgD2LaQk+GezVvT2e+0iX62GajgCmuo8JFMyk4BP0wq 8jb/0WSCNprtliOch/y7TvqJa6Zot+1s8InPQZpIYr8Hi6wdRK2Qnfd/p3z78vXS06ZU nOixEogsN6+ed7xuYmQwc7u0lUoDAxEHj/AfcEyuCQgkQSCpYmCA8bgvDWHxQxtVTXW1 B9NLEF+cbClMe59X1JzyTWhGYFPWhCktqKS32sd1d5yF4ZAA/MBVB77hvc8ASjUdORvt kpWQ== X-Gm-Message-State: APt69E1U8RjCWxDCzCRBZe9js1Y21UiK+Lel+38aseIP3wqXOmzj5FE4 ZgA7i3soxgi6ORJgocxPhx0= X-Google-Smtp-Source: ADUXVKI35aBJZ0gT9cEiAGoAl3JE8IUIo2I4RZ+5QczF8O9d9SsLV4wpP1IEUBgYVFIm/ureXNjD0A== X-Received: by 2002:a2e:9890:: with SMTP id b16-v6mr6109744ljj.80.1529264794220; Sun, 17 Jun 2018 12:46:34 -0700 (PDT) Received: from green.intra.ispras.ru (bran.ispras.ru. [83.149.199.196]) by smtp.googlemail.com with ESMTPSA id s18-v6sm2451545lfc.22.2018.06.17.12.46.33 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Sun, 17 Jun 2018 12:46:33 -0700 (PDT) From: efremov@linux.com To: Krzysztof Kozlowski Cc: Viresh Kumar , linux-arm-kernel@lists.infradead.org, linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org, ldv-project@linuxtesting.org, Denis Efremov Subject: [PATCH] ARM: S3C24XX: fix typo in guard macro for s3c2412.h Date: Sun, 17 Jun 2018 22:46:17 +0300 Message-Id: <20180617194617.15145-1-efremov@linux.com> X-Mailer: git-send-email 2.17.1 Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The guard macro __ARCH_ARM_REGS_S3C24XX_S3C2412_H in header s3c2412.h doesn't match the #ifndef macro __ARCH_ARM_MACH_S3C24XX_S3C2412_H. This patch defines the guard correctly. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov --- arch/arm/mach-s3c24xx/include/mach/s3c2412.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-s3c24xx/include/mach/s3c2412.h b/arch/arm/mach-s3c24xx/include/mach/s3c2412.h index b6b32724ace8..4ff83f956cfb 100644 --- a/arch/arm/mach-s3c24xx/include/mach/s3c2412.h +++ b/arch/arm/mach-s3c24xx/include/mach/s3c2412.h @@ -6,7 +6,7 @@ */ #ifndef __ARCH_ARM_MACH_S3C24XX_S3C2412_H -#define __ARCH_ARM_REGS_S3C24XX_S3C2412_H __FILE__ +#define __ARCH_ARM_MACH_S3C24XX_S3C2412_H __FILE__ #define S3C2412_MEMREG(x) (S3C24XX_VA_MEMCTRL + (x)) #define S3C2412_EBIREG(x) (S3C2412_VA_EBI + (x))