From patchwork Tue Oct 13 13:44:34 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Franklin Cooper X-Patchwork-Id: 7385611 Return-Path: X-Original-To: patchwork-linux-omap@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id E01F8BEEA4 for ; Tue, 13 Oct 2015 13:45:05 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 31C0920805 for ; Tue, 13 Oct 2015 13:45:04 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 41C0A201B4 for ; Tue, 13 Oct 2015 13:45:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932363AbbJMNot (ORCPT ); Tue, 13 Oct 2015 09:44:49 -0400 Received: from mail-oi0-f49.google.com ([209.85.218.49]:36660 "EHLO mail-oi0-f49.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932288AbbJMNos (ORCPT ); Tue, 13 Oct 2015 09:44:48 -0400 Received: by oihr205 with SMTP id r205so9602106oih.3; Tue, 13 Oct 2015 06:44:47 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=from:to:cc:subject:date:message-id; bh=qUmS3UFKRkGiNCaPER9jWFxCT8M0Ab1GcPzHjnS13d0=; b=awUhjDFRU8SbDeUxL6vQrrWwHb/3LKPcWC7rnV/d6x4Ry0HTyVJr9Os/AgPmGRw7ci Z86VRxJkVL4fK/q0XhWWkR4jtDMZmhIK1bz6hO/u5sT/rcCwfqZZSzqWL+78QZGkC6mw Cul3G1I4ccTC4Bl0fa/nO+vIZZTLIoWUEFjAcpXRfZOPmwaek7nnV6f+NKlCuFlYgDnl 5/x6oY+HG6oLzaClodftQ5WUYhQqMUN8j+KhcntS4Ky6Ul999sfDmi7uzeVd+J2AcFVa BxOxfzAvwtqq2SMsP8dKCT9nh62bPry8gFcNCXLI5tYBOnTM8rq2gxymOAiOX1dqVD+b zsCA== X-Received: by 10.202.227.3 with SMTP id a3mr18621267oih.71.1444743887563; Tue, 13 Oct 2015 06:44:47 -0700 (PDT) Received: from localhost.localdomain (pool-71-97-41-79.dllstx.fios.verizon.net. [71.97.41.79]) by smtp.gmail.com with ESMTPSA id v67sm1529156oie.18.2015.10.13.06.44.46 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 13 Oct 2015 06:44:46 -0700 (PDT) From: Franklin S Cooper Jr To: paul@pwsan.com, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-omap@vger.kernel.org, linux@arm.linux.org.uk, tony@atomide.com, rogerq@ti.com, nm@ti.com Cc: Franklin S Cooper Jr Subject: [PATCH] ARM: DRA7: hwmod: Remove elm address space from hwmod data Date: Tue, 13 Oct 2015 08:44:34 -0500 Message-Id: <1444743874-4454-1-git-send-email-fcooper@ti.com> X-Mailer: git-send-email 2.6.1 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_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 ELM address information is provided by device tree. No longer need to include this information within hwmod. Signed-off-by: Franklin S Cooper Jr Reviewed-by: Lokesh Vutla Acked-by: Roger Quadros --- arch/arm/mach-omap2/omap_hwmod_7xx_data.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/arch/arm/mach-omap2/omap_hwmod_7xx_data.c b/arch/arm/mach-omap2/omap_hwmod_7xx_data.c index 562247b..ad2cc7a 100644 --- a/arch/arm/mach-omap2/omap_hwmod_7xx_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_7xx_data.c @@ -2566,21 +2566,11 @@ static struct omap_hwmod_ocp_if dra7xx_l3_main_1__hdmi = { .user = OCP_USER_MPU | OCP_USER_SDMA, }; -static struct omap_hwmod_addr_space dra7xx_elm_addrs[] = { - { - .pa_start = 0x48078000, - .pa_end = 0x48078fff, - .flags = ADDR_TYPE_RT - }, - { } -}; - /* l4_per1 -> elm */ static struct omap_hwmod_ocp_if dra7xx_l4_per1__elm = { .master = &dra7xx_l4_per1_hwmod, .slave = &dra7xx_elm_hwmod, .clk = "l3_iclk_div", - .addr = dra7xx_elm_addrs, .user = OCP_USER_MPU | OCP_USER_SDMA, };