From patchwork Tue Jul 17 09:13:40 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 10039 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id C34F824036 for ; Tue, 17 Jul 2012 09:14:11 +0000 (UTC) Received: from mail-gg0-f180.google.com (mail-gg0-f180.google.com [209.85.161.180]) by fiordland.canonical.com (Postfix) with ESMTP id 89FEAA1843E for ; Tue, 17 Jul 2012 09:14:11 +0000 (UTC) Received: by ggnf1 with SMTP id f1so149385ggn.11 for ; Tue, 17 Jul 2012 02:14:10 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:x-gm-message-state; bh=ENVNcCzXRkMXGd5LxpTH7bA5ts05hthy8tBuB/2CE98=; b=i6mqmwsXBoRKRMM1eQ8UifM2o/Frw+k7MRjef4A4S7DntZ8KVinaYVtNivVt5cFdM3 TBHzhmpCq2rWE+rXpvmG7dBHxtYeyFv5KxeFGBGxD8oPfV9zcKZIkxGi/Y5VhifDeIAA /X0wenJvH69SMzgrR4efLC2HMwq4o73bVD+IfzxJv9eWHlFyCdKcg9jaxAZKHs/L4Grn 9Y1xvcLEm9j20/5bfo6/AfYzvzITybT4HXWmLFl7Usl4K2H7IpeWNfPtUJGVSoz3wDmA Qb/3Q70XIu7j2iznkeeDe6ulNarzc2eWmf/DX/H2zPBrevgAcMUO1KI8A1zbkPk0r376 QBXg== Received: by 10.50.160.198 with SMTP id xm6mr747872igb.0.1342516450600; Tue, 17 Jul 2012 02:14:10 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.231.241.2 with SMTP id lc2csp16793ibb; Tue, 17 Jul 2012 02:14:10 -0700 (PDT) Received: by 10.236.185.198 with SMTP id u46mr1180746yhm.33.1342516449977; Tue, 17 Jul 2012 02:14:09 -0700 (PDT) Received: from mail-yx0-f178.google.com (mail-yx0-f178.google.com [209.85.213.178]) by mx.google.com with ESMTPS id r47si15625041yhm.117.2012.07.17.02.14.09 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 17 Jul 2012 02:14:09 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.213.178 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.213.178; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.213.178 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) smtp.mail=sachin.kamat@linaro.org Received: by yenl6 with SMTP id l6so190707yen.37 for ; Tue, 17 Jul 2012 02:14:09 -0700 (PDT) Received: by 10.68.218.7 with SMTP id pc7mr4682258pbc.88.1342516449307; Tue, 17 Jul 2012 02:14:09 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id tu7sm11959918pbc.55.2012.07.17.02.14.06 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 17 Jul 2012 02:14:08 -0700 (PDT) From: Sachin Kamat To: linux-samsung-soc@vger.kernel.org Cc: kgene.kim@samsung.com, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH 1/1] ARM: S3C64XX: Add header file protection macros in pm-core.h Date: Tue, 17 Jul 2012 14:43:40 +0530 Message-Id: <1342516420-30188-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 X-Gm-Message-State: ALoCoQkCuvZ6ZNQbm1Fv9Mnl7DdFIbt6UNIrrFnH+ENoxtXUeG2R+8bm2db0lcd65V6QShF1G99H Adds header file protection macros. Signed-off-by: Sachin Kamat --- arch/arm/mach-s3c64xx/include/mach/pm-core.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-s3c64xx/include/mach/pm-core.h b/arch/arm/mach-s3c64xx/include/mach/pm-core.h index fcf3dca..c9be9dd 100644 --- a/arch/arm/mach-s3c64xx/include/mach/pm-core.h +++ b/arch/arm/mach-s3c64xx/include/mach/pm-core.h @@ -12,6 +12,9 @@ * published by the Free Software Foundation. */ +#ifndef __S3C64XX_PM_CORE_H +#define __S3C64XX_PM_CORE_H __FILE__ + #include static inline void s3c_pm_debug_init_uart(void) @@ -113,3 +116,4 @@ static inline void samsung_pm_saved_gpios(void) __raw_writel(S3C64XX_SLPEN_USE_xSLP, S3C64XX_SLPEN); } +#endif /* __S3C64XX_PM_CORE_H */