From patchwork Thu Jan 2 08:54:16 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 3424091 Return-Path: X-Original-To: patchwork-linux-samsung-soc@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 97A789F2E9 for ; Thu, 2 Jan 2014 08:58:11 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 986CF2013D for ; Thu, 2 Jan 2014 08:58:10 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 263A020142 for ; Thu, 2 Jan 2014 08:58:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751408AbaABI6I (ORCPT ); Thu, 2 Jan 2014 03:58:08 -0500 Received: from mail-pb0-f50.google.com ([209.85.160.50]:56095 "EHLO mail-pb0-f50.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751388AbaABI6H (ORCPT ); Thu, 2 Jan 2014 03:58:07 -0500 Received: by mail-pb0-f50.google.com with SMTP id rr13so14173155pbb.23 for ; Thu, 02 Jan 2014 00:58:07 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=6Vos9aRFBz/exw5sCf98aPIEar0sJb9CRdn7JRj2UcI=; b=lKKuKIG5ad7ZN04F6m/X3CX8d6q8+4wLV5fri0FMplIe4//emuCdBCAHZZLlBe6ho3 LfcYSdETKn+LZZfk0BfS9TQMMkcjRnmVhS0X3WHrJl4lqT+8rKXafxmB4Po+6TJh1iMp nSQlo9ZKLXM8TEGYwSF/RhX0aTwWSXTRUuOl5JtgqrHjPv0f2dL5yqbvccO2lxw/0kCb lO3jb0Oq+38AFJxC41HIAOseCxw53r0BMf1+Mdy1gd21AqxfI1dPKl3nGHwZclYZj+ZJ 5Sdz6XV1pJH3yQcn8T8XMaEkWtwYyHlObXCR9ISKFz4h7PLX/s6f4p7YcsyIT31mThLq 1nyg== X-Gm-Message-State: ALoCoQnhZ9BcA9dVyL1wwjhdm1F6V7GT3CbEfoLbN4+QYnsIy5rbTGuxg6ndezReMcmAtXDJRSVh X-Received: by 10.68.99.226 with SMTP id et2mr39749968pbb.8.1388653087269; Thu, 02 Jan 2014 00:58:07 -0800 (PST) Received: from linaro.sisodomain.com ([115.113.119.130]) by mx.google.com with ESMTPSA id fk4sm131428524pab.23.2014.01.02.00.58.04 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 02 Jan 2014 00:58:06 -0800 (PST) From: Sachin Kamat To: linux-samsung-soc@vger.kernel.org Cc: kgene.kim@samsung.com, sachin.kamat@linaro.org, patches@linaro.org, Mark Brown Subject: [PATCH 3/5] ARM: S3C64XX: Remove incorrect file references Date: Thu, 2 Jan 2014 14:24:16 +0530 Message-Id: <1388652858-25337-3-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1388652858-25337-1-git-send-email-sachin.kamat@linaro.org> References: <1388652858-25337-1-git-send-email-sachin.kamat@linaro.org> Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org X-Spam-Status: No, score=-7.4 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The incorrect references are as a result of file/folder movements/renaming. Since the references do not convey any useful information, remove them altogether rather than fixing to ease future maintenance. Signed-off-by: Sachin Kamat Cc: Mark Brown --- arch/arm/mach-s3c64xx/dev-audio.c | 3 +-- arch/arm/mach-s3c64xx/dev-uart.c | 3 +-- arch/arm/mach-s3c64xx/include/mach/regs-clock.h | 9 ++++----- arch/arm/mach-s3c64xx/include/mach/regs-gpio.h | 3 +-- arch/arm/mach-s3c64xx/irq-pm.c | 3 +-- arch/arm/mach-s3c64xx/pm.c | 3 +-- arch/arm/mach-s3c64xx/setup-fb-24bpp.c | 3 +-- arch/arm/mach-s3c64xx/setup-i2c0.c | 3 +-- arch/arm/mach-s3c64xx/setup-i2c1.c | 3 +-- arch/arm/mach-s3c64xx/setup-sdhci-gpio.c | 3 +-- arch/arm/mach-s3c64xx/sleep.S | 3 +-- 11 files changed, 14 insertions(+), 25 deletions(-) diff --git a/arch/arm/mach-s3c64xx/dev-audio.c b/arch/arm/mach-s3c64xx/dev-audio.c index 6f58c80235dc..e13d0bdedfa9 100644 --- a/arch/arm/mach-s3c64xx/dev-audio.c +++ b/arch/arm/mach-s3c64xx/dev-audio.c @@ -1,5 +1,4 @@ -/* linux/arch/arm/plat-s3c/dev-audio.c - * +/* * Copyright 2009 Wolfson Microelectronics * Mark Brown * diff --git a/arch/arm/mach-s3c64xx/dev-uart.c b/arch/arm/mach-s3c64xx/dev-uart.c index 46e18d77ea93..19eb3be57bb3 100644 --- a/arch/arm/mach-s3c64xx/dev-uart.c +++ b/arch/arm/mach-s3c64xx/dev-uart.c @@ -1,5 +1,4 @@ -/* linux/arch/arm/plat-s3c64xx/dev-uart.c - * +/* * Copyright 2008 Openmoko, Inc. * Copyright 2008 Simtec Electronics * Ben Dooks diff --git a/arch/arm/mach-s3c64xx/include/mach/regs-clock.h b/arch/arm/mach-s3c64xx/include/mach/regs-clock.h index 4f44aac77092..1832638c96ea 100644 --- a/arch/arm/mach-s3c64xx/include/mach/regs-clock.h +++ b/arch/arm/mach-s3c64xx/include/mach/regs-clock.h @@ -1,5 +1,4 @@ -/* arch/arm/plat-s3c64xx/include/plat/regs-clock.h - * +/* * Copyright 2008 Openmoko, Inc. * Copyright 2008 Simtec Electronics * Ben Dooks @@ -12,8 +11,8 @@ * published by the Free Software Foundation. */ -#ifndef __PLAT_REGS_CLOCK_H -#define __PLAT_REGS_CLOCK_H __FILE__ +#ifndef __MACH_REGS_CLOCK_H +#define __MACH_REGS_CLOCK_H __FILE__ /* * FIXME: Remove remaining definitions @@ -35,4 +34,4 @@ #define MEM_SYS_CFG_INDEP_CF 0x4000 #define MEM_SYS_CFG_EBI_FIX_PRI_CFCON 0x30 -#endif /* _PLAT_REGS_CLOCK_H */ +#endif /* __MACH_REGS_CLOCK_H */ diff --git a/arch/arm/mach-s3c64xx/include/mach/regs-gpio.h b/arch/arm/mach-s3c64xx/include/mach/regs-gpio.h index 81f7f6e6832e..ef02ae583756 100644 --- a/arch/arm/mach-s3c64xx/include/mach/regs-gpio.h +++ b/arch/arm/mach-s3c64xx/include/mach/regs-gpio.h @@ -1,5 +1,4 @@ -/* linux/arch/arm/plat-s3c64xx/include/mach/regs-gpio.h - * +/* * Copyright 2008 Openmoko, Inc. * Copyright 2008 Simtec Electronics * Ben Dooks diff --git a/arch/arm/mach-s3c64xx/irq-pm.c b/arch/arm/mach-s3c64xx/irq-pm.c index 1649c0d1c1b8..a0fbdde512b5 100644 --- a/arch/arm/mach-s3c64xx/irq-pm.c +++ b/arch/arm/mach-s3c64xx/irq-pm.c @@ -1,5 +1,4 @@ -/* arch/arm/plat-s3c64xx/irq-pm.c - * +/* * Copyright 2008 Openmoko, Inc. * Copyright 2008 Simtec Electronics * Ben Dooks diff --git a/arch/arm/mach-s3c64xx/pm.c b/arch/arm/mach-s3c64xx/pm.c index 99c778eecab6..53e5ac448c0d 100644 --- a/arch/arm/mach-s3c64xx/pm.c +++ b/arch/arm/mach-s3c64xx/pm.c @@ -1,5 +1,4 @@ -/* linux/arch/arm/plat-s3c64xx/pm.c - * +/* * Copyright 2008 Openmoko, Inc. * Copyright 2008 Simtec Electronics * Ben Dooks diff --git a/arch/arm/mach-s3c64xx/setup-fb-24bpp.c b/arch/arm/mach-s3c64xx/setup-fb-24bpp.c index 222792691b41..24512fa07577 100644 --- a/arch/arm/mach-s3c64xx/setup-fb-24bpp.c +++ b/arch/arm/mach-s3c64xx/setup-fb-24bpp.c @@ -1,5 +1,4 @@ -/* linux/arch/arm/plat-s3c64xx/setup-fb-24bpp.c - * +/* * Copyright 2008 Openmoko, Inc. * Copyright 2008 Simtec Electronics * Ben Dooks diff --git a/arch/arm/mach-s3c64xx/setup-i2c0.c b/arch/arm/mach-s3c64xx/setup-i2c0.c index f269dabc9593..ba3a72dfacfe 100644 --- a/arch/arm/mach-s3c64xx/setup-i2c0.c +++ b/arch/arm/mach-s3c64xx/setup-i2c0.c @@ -1,5 +1,4 @@ -/* linux/arch/arm/plat-s3c64xx/setup-i2c0.c - * +/* * Copyright 2008 Openmoko, Inc. * Copyright 2008 Simtec Electronics * Ben Dooks diff --git a/arch/arm/mach-s3c64xx/setup-i2c1.c b/arch/arm/mach-s3c64xx/setup-i2c1.c index aa2bfcd5e818..c51538f09c0c 100644 --- a/arch/arm/mach-s3c64xx/setup-i2c1.c +++ b/arch/arm/mach-s3c64xx/setup-i2c1.c @@ -1,5 +1,4 @@ -/* linux/arch/arm/plat-s3c64xx/setup-i2c1.c - * +/* * Copyright 2008 Openmoko, Inc. * Copyright 2008 Simtec Electronics * Ben Dooks diff --git a/arch/arm/mach-s3c64xx/setup-sdhci-gpio.c b/arch/arm/mach-s3c64xx/setup-sdhci-gpio.c index 79192b7217df..d4d80cd0a095 100644 --- a/arch/arm/mach-s3c64xx/setup-sdhci-gpio.c +++ b/arch/arm/mach-s3c64xx/setup-sdhci-gpio.c @@ -1,5 +1,4 @@ -/* linux/arch/arm/plat-s3c64xx/setup-sdhci-gpio.c - * +/* * Copyright 2008 Simtec Electronics * Ben Dooks * http://armlinux.simtec.co.uk/ diff --git a/arch/arm/mach-s3c64xx/sleep.S b/arch/arm/mach-s3c64xx/sleep.S index 34313f9c8792..8a4d50160487 100644 --- a/arch/arm/mach-s3c64xx/sleep.S +++ b/arch/arm/mach-s3c64xx/sleep.S @@ -1,5 +1,4 @@ -/* linux/arch/arm/plat-s3c64xx/sleep.S - * +/* * Copyright 2008 Openmoko, Inc. * Copyright 2008 Simtec Electronics * Ben Dooks