From patchwork Mon Aug 29 17:35:34 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin Hilman X-Patchwork-Id: 1109232 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.4) with ESMTP id p7THrWSj008158 for ; Mon, 29 Aug 2011 17:53:37 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754209Ab1H2Rfe (ORCPT ); Mon, 29 Aug 2011 13:35:34 -0400 Received: from na3sys009aog124.obsmtp.com ([74.125.149.151]:47223 "EHLO na3sys009aog124.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751250Ab1H2Rfe (ORCPT ); Mon, 29 Aug 2011 13:35:34 -0400 Received: from mail-pz0-f46.google.com ([209.85.210.46]) (using TLSv1) by na3sys009aob124.postini.com ([74.125.148.12]) with SMTP ID DSNKTlvN5fFNoGe+0iDO1INB2opvdxNKxpHB@postini.com; Mon, 29 Aug 2011 10:35:33 PDT Received: by mail-pz0-f46.google.com with SMTP id 32so10235194pzk.33 for ; Mon, 29 Aug 2011 10:35:33 -0700 (PDT) Received: by 10.142.150.22 with SMTP id x22mr2706984wfd.23.1314639333223; Mon, 29 Aug 2011 10:35:33 -0700 (PDT) Received: from localhost.localdomain (c-24-19-7-36.hsd1.wa.comcast.net. [24.19.7.36]) by mx.google.com with ESMTPS id m1sm19531524pbf.3.2011.08.29.10.35.30 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 29 Aug 2011 10:35:30 -0700 (PDT) From: Kevin Hilman To: linux-omap@vger.kernel.org Cc: linux-arm-kernel@lists.infradead.org Subject: [PATCH 01/22] OMAP2+: hwmod: remove unused voltagedomain pointer Date: Mon, 29 Aug 2011 10:35:34 -0700 Message-Id: <1314639355-12713-2-git-send-email-khilman@ti.com> X-Mailer: git-send-email 1.7.6 In-Reply-To: <1314639355-12713-1-git-send-email-khilman@ti.com> References: <1314639355-12713-1-git-send-email-khilman@ti.com> Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Mon, 29 Aug 2011 17:53:37 +0000 (UTC) The voltage domain pointer currently in struct omap_hwmod is not used and does not belong here. Instead, voltage domains will be associated with powerdomains in forthcoming patches. Acked-by: Paul Walmsley Signed-off-by: Kevin Hilman --- arch/arm/plat-omap/include/plat/omap_hwmod.h | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/arch/arm/plat-omap/include/plat/omap_hwmod.h b/arch/arm/plat-omap/include/plat/omap_hwmod.h index 0e329ca..38ac4af 100644 --- a/arch/arm/plat-omap/include/plat/omap_hwmod.h +++ b/arch/arm/plat-omap/include/plat/omap_hwmod.h @@ -526,7 +526,6 @@ struct omap_hwmod { char *clkdm_name; struct clockdomain *clkdm; char *vdd_name; - struct voltagedomain *voltdm; struct omap_hwmod_ocp_if **masters; /* connect to *_IA */ struct omap_hwmod_ocp_if **slaves; /* connect to *_TA */ void *dev_attr;