From patchwork Wed Oct 28 21:02:17 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Franklin Cooper X-Patchwork-Id: 7514041 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 8FFC1BEEA4 for ; Wed, 28 Oct 2015 21:03:58 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id BABA120823 for ; Wed, 28 Oct 2015 21:03:57 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id CC5762081D for ; Wed, 28 Oct 2015 21:03:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756219AbbJ1VCZ (ORCPT ); Wed, 28 Oct 2015 17:02:25 -0400 Received: from mail-ob0-f193.google.com ([209.85.214.193]:36629 "EHLO mail-ob0-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756311AbbJ1VCY (ORCPT ); Wed, 28 Oct 2015 17:02:24 -0400 Received: by obctp1 with SMTP id tp1so1380655obc.3; Wed, 28 Oct 2015 14:02:23 -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:in-reply-to:references; bh=REaa9a9/d1oyhMaLdl8lBWX3KH5scutNGTXt8nt6+Ck=; b=IsLbe3KNUNXgQ3eOWO6Bh0+lkp328zttz60j4fuf7pVMyiYD3VFGgenx/pHBn5sChz cPj3gjEBAY4eE0AX3vuVgKYw28BItK/4OzP5XHmeD2X9T/CjQnmbnOiKwDaZ6byCrVE7 Jdx5ctww6TlABjDTomC1LKEkrScrrECatamSrIerRz/Hax8S6FoMm/w13fBsYcc7MHTc pxFZMxZFAhRoGm1KZKIvd1fibxZeo2yqJLYGqF4wD8zhqonQqQa9f79GtjQ+GSjhSJrZ GzqKAxgp0cdrr5IVMFtuX3pu/kdlpUWz1OITG5arCAVFxkg7JSlZWkdDbLZnQG0cjx+m HW/g== X-Received: by 10.182.20.238 with SMTP id q14mr34292052obe.24.1446066143401; Wed, 28 Oct 2015 14:02:23 -0700 (PDT) Received: from localhost.localdomain (pool-71-164-206-129.dllstx.fios.verizon.net. [71.164.206.129]) by smtp.gmail.com with ESMTPSA id ik9sm20756701obc.1.2015.10.28.14.02.22 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 28 Oct 2015 14:02:23 -0700 (PDT) From: Franklin S Cooper Jr To: 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, lokeshvutla@ti.com Cc: Franklin S Cooper Jr Subject: [PATCH 2/2] ARM: omap4: hwmod: Remove elm address space from hwmod data Date: Wed, 28 Oct 2015 16:02:17 -0500 Message-Id: <1446066137-11527-3-git-send-email-fcooper@ti.com> X-Mailer: git-send-email 2.6.1 In-Reply-To: <1446066137-11527-1-git-send-email-fcooper@ti.com> References: <1446066137-11527-1-git-send-email-fcooper@ti.com> 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, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham 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. This patch has only been boot tested. Signed-off-by: Franklin S Cooper Jr --- arch/arm/mach-omap2/omap_hwmod_44xx_data.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/arch/arm/mach-omap2/omap_hwmod_44xx_data.c b/arch/arm/mach-omap2/omap_hwmod_44xx_data.c index 43eebf2..8f13f4a 100644 --- a/arch/arm/mach-omap2/omap_hwmod_44xx_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_44xx_data.c @@ -3915,21 +3915,11 @@ static struct omap_hwmod_ocp_if omap44xx_l4_per__dss_venc = { .user = OCP_USER_MPU, }; -static struct omap_hwmod_addr_space omap44xx_elm_addrs[] = { - { - .pa_start = 0x48078000, - .pa_end = 0x48078fff, - .flags = ADDR_TYPE_RT - }, - { } -}; - /* l4_per -> elm */ static struct omap_hwmod_ocp_if omap44xx_l4_per__elm = { .master = &omap44xx_l4_per_hwmod, .slave = &omap44xx_elm_hwmod, .clk = "l4_div_ck", - .addr = omap44xx_elm_addrs, .user = OCP_USER_MPU | OCP_USER_SDMA, };