From patchwork Tue May 14 15:03:16 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jamie Iles X-Patchwork-Id: 2566731 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from casper.infradead.org (casper.infradead.org [85.118.1.10]) by patchwork2.kernel.org (Postfix) with ESMTP id CF1B1DF24C for ; Tue, 14 May 2013 15:10:58 +0000 (UTC) Received: from merlin.infradead.org ([2001:4978:20e::2]) by casper.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UcGo0-0007rN-T1; Tue, 14 May 2013 15:06:30 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1UcGlU-0000qH-9C; Tue, 14 May 2013 15:03:44 +0000 Received: from mail-wi0-x235.google.com ([2a00:1450:400c:c05::235]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UcGlS-0000pS-5V for linux-arm-kernel@lists.infradead.org; Tue, 14 May 2013 15:03:43 +0000 Received: by mail-wi0-f181.google.com with SMTP id hi5so588987wib.14 for ; Tue, 14 May 2013 08:03:19 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:from:to:subject:date:message-id:x-mailer :x-gm-message-state; bh=TyYgWC2649wx5d1fGqZU+3DAZneeUEG+WDJa6w5pnFU=; b=JGLmAcpUoA12XdGAkDVRX2xY2F8zUxCfB5PHCshnsPNECRnRZipbwOfUF1c3Z/bn+A kd3a1cfuSYZLiiDuUEyLWPdaTHvDcAUmphu1N+CPyNRa5vyek+Ihl+TDi6dmVUcvyzUC 0h7xiyXsWhMdxlNjs3citl8T1PQ1G+zYMq/SNpZJCHT40+SJ2Um5dUgK/VKM0N6ITLVq V92NIzgvwOp3llL8onltun34Gb7rHekGvoxKCySqcd2TPf3p8bnbhC7EUJYrpNpMU3+n CHis0iU15/IxTW072J8uqOyrx72LcwFVOkVI6bFnX5BUl6VqdkZS49CLzMoGKGVvME0w ausg== X-Received: by 10.180.212.3 with SMTP id ng3mr7393129wic.22.1368543798352; Tue, 14 May 2013 08:03:18 -0700 (PDT) Received: from localhost ([2.216.16.214]) by mx.google.com with ESMTPSA id dj7sm22292396wib.6.2013.05.14.08.03.17 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Tue, 14 May 2013 08:03:17 -0700 (PDT) From: Jamie Iles To: linux-arm-kernel@lists.infradead.org Subject: [PATCH] picoxcell: remove redundant common.h Date: Tue, 14 May 2013 16:03:16 +0100 Message-Id: <1368543796-19230-1-git-send-email-jamie@jamieiles.com> X-Mailer: git-send-email 1.8.1.2 X-Gm-Message-State: ALoCoQnAQrBmzpmm37dlYe0jMH8EkPZjE4H9GqzNmHvwtUPltoeOLfhhCaAJyHpbGs1Xr7SsxKm5 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130514_110342_346383_1EF37EEE X-CRM114-Status: GOOD ( 11.78 ) X-Spam-Score: -1.9 (-) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-1.9 points) pts rule name description ---- ---------------------- -------------------------------------------------- -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org We don't need this now - everything lives in common.c so no need for a separate header. Signed-off-by: Jamie Iles --- arch/arm/mach-picoxcell/common.c | 2 -- arch/arm/mach-picoxcell/common.h | 17 ----------------- 2 files changed, 19 deletions(-) delete mode 100644 arch/arm/mach-picoxcell/common.h diff --git a/arch/arm/mach-picoxcell/common.c b/arch/arm/mach-picoxcell/common.c index 70b441a..f6f71bb 100644 --- a/arch/arm/mach-picoxcell/common.c +++ b/arch/arm/mach-picoxcell/common.c @@ -20,8 +20,6 @@ #include #include -#include "common.h" - #define PHYS_TO_IO(x) (((x) & 0x00ffffff) | 0xfe000000) #define PICOXCELL_PERIPH_BASE 0x80000000 #define PICOXCELL_PERIPH_LENGTH SZ_4M diff --git a/arch/arm/mach-picoxcell/common.h b/arch/arm/mach-picoxcell/common.h deleted file mode 100644 index 481b42a..0000000 --- a/arch/arm/mach-picoxcell/common.h +++ /dev/null @@ -1,17 +0,0 @@ -/* - * Copyright (c) 2011 Picochip Ltd., Jamie Iles - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as - * published by the Free Software Foundation. - * - * All enquiries to support@picochip.com - */ -#ifndef __PICOXCELL_COMMON_H__ -#define __PICOXCELL_COMMON_H__ - -#include - -extern void dw_apb_timer_init(void); - -#endif /* __PICOXCELL_COMMON_H__ */