From patchwork Tue Oct 21 21:55:38 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexandre Belloni X-Patchwork-Id: 5128511 Return-Path: X-Original-To: patchwork-linux-pm@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 94EC59F30B for ; Tue, 21 Oct 2014 21:57:44 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id CD36720221 for ; Tue, 21 Oct 2014 21:57:43 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id E3FE120176 for ; Tue, 21 Oct 2014 21:57:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933743AbaJUV52 (ORCPT ); Tue, 21 Oct 2014 17:57:28 -0400 Received: from down.free-electrons.com ([37.187.137.238]:52079 "EHLO mail.free-electrons.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S933458AbaJUV4L (ORCPT ); Tue, 21 Oct 2014 17:56:11 -0400 Received: by mail.free-electrons.com (Postfix, from userid 106) id 7BD00500B; Tue, 21 Oct 2014 23:56:12 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Spam-Level: X-Spam-Status: No, score=-8.3 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 Received: from localhost (128-79-216-6.hfc.dyn.abo.bbox.fr [128.79.216.6]) by mail.free-electrons.com (Postfix) with ESMTPSA id 33D715007; Tue, 21 Oct 2014 23:56:12 +0200 (CEST) From: Alexandre Belloni To: Nicolas Ferre , Sebastian Reichel Cc: Jean-Christophe Plagniol-Villard , Dmitry Eremin-Solenikov , David Woodhouse , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org, Alexandre Belloni Subject: [PATCH 6/8] ARM: at91: sam9: remove useless resource for rstc Date: Tue, 21 Oct 2014 23:55:38 +0200 Message-Id: <1413928540-27099-7-git-send-email-alexandre.belloni@free-electrons.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1413928540-27099-1-git-send-email-alexandre.belloni@free-electrons.com> References: <1413928540-27099-1-git-send-email-alexandre.belloni@free-electrons.com> Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The RAMC resources are now unnecessary in the reset driver, remove them. Signed-off-by: Alexandre Belloni --- arch/arm/mach-at91/at91sam9260.c | 5 ----- arch/arm/mach-at91/at91sam9261.c | 5 ----- arch/arm/mach-at91/at91sam9263.c | 5 ----- 3 files changed, 15 deletions(-) diff --git a/arch/arm/mach-at91/at91sam9260.c b/arch/arm/mach-at91/at91sam9260.c index d5a6df9ce570..d1c97e025483 100644 --- a/arch/arm/mach-at91/at91sam9260.c +++ b/arch/arm/mach-at91/at91sam9260.c @@ -365,11 +365,6 @@ static struct resource rstc_resources[] = { .end = AT91SAM9260_BASE_RSTC + SZ_16 - 1, .flags = IORESOURCE_MEM, }, - [1] = { - .start = AT91SAM9260_BASE_SDRAMC, - .end = AT91SAM9260_BASE_SDRAMC + SZ_512 - 1, - .flags = IORESOURCE_MEM, - }, }; static struct platform_device rstc_device = { diff --git a/arch/arm/mach-at91/at91sam9261.c b/arch/arm/mach-at91/at91sam9261.c index 1b23a023cca6..7a354d5a3d4c 100644 --- a/arch/arm/mach-at91/at91sam9261.c +++ b/arch/arm/mach-at91/at91sam9261.c @@ -324,11 +324,6 @@ static struct resource rstc_resources[] = { .end = AT91SAM9261_BASE_RSTC + SZ_16 - 1, .flags = IORESOURCE_MEM, }, - [1] = { - .start = AT91SAM9261_BASE_SDRAMC, - .end = AT91SAM9261_BASE_SDRAMC + SZ_512 - 1, - .flags = IORESOURCE_MEM, - }, }; static struct platform_device rstc_device = { diff --git a/arch/arm/mach-at91/at91sam9263.c b/arch/arm/mach-at91/at91sam9263.c index 55c0c212fde1..1f7e7021ae83 100644 --- a/arch/arm/mach-at91/at91sam9263.c +++ b/arch/arm/mach-at91/at91sam9263.c @@ -347,11 +347,6 @@ static struct resource rstc_resources[] = { .end = AT91SAM9263_BASE_RSTC + SZ_16 - 1, .flags = IORESOURCE_MEM, }, - [1] = { - .start = AT91SAM9263_BASE_SDRAMC0, - .end = AT91SAM9263_BASE_SDRAMC0 + SZ_512 - 1, - .flags = IORESOURCE_MEM, - }, }; static struct platform_device rstc_device = {