From patchwork Wed Jul 8 00:17:36 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin Hilman X-Patchwork-Id: 34528 X-Patchwork-Delegate: khilman@deeprootsystems.com Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n680HkZe015964 for ; Wed, 8 Jul 2009 00:17:46 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757930AbZGHARo (ORCPT ); Tue, 7 Jul 2009 20:17:44 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1757943AbZGHARo (ORCPT ); Tue, 7 Jul 2009 20:17:44 -0400 Received: from mail-pz0-f193.google.com ([209.85.222.193]:45729 "EHLO mail-pz0-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757930AbZGHARn (ORCPT ); Tue, 7 Jul 2009 20:17:43 -0400 Received: by pzk31 with SMTP id 31so3280922pzk.33 for ; Tue, 07 Jul 2009 17:17:42 -0700 (PDT) Received: by 10.142.51.4 with SMTP id y4mr2091641wfy.81.1247012262278; Tue, 07 Jul 2009 17:17:42 -0700 (PDT) Received: from localhost ([216.254.16.51]) by mx.google.com with ESMTPS id 22sm5459320wfi.12.2009.07.07.17.17.41 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 07 Jul 2009 17:17:41 -0700 (PDT) From: Kevin Hilman To: paul@pwsan.com Cc: linux-omap@vger.kernel.org Subject: [PATCH 1/2] OMAP2/3: HS-MMC: correct hwmod offsets for SYSCONFIG/SYSSTATUS Date: Tue, 7 Jul 2009 17:17:36 -0700 Message-Id: <1247012257-19407-2-git-send-email-khilman@deeprootsystems.com> X-Mailer: git-send-email 1.6.3.3 In-Reply-To: <1247012257-19407-1-git-send-email-khilman@deeprootsystems.com> References: <1247012257-19407-1-git-send-email-khilman@deeprootsystems.com> Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org Signed-off-by: Kevin Hilman --- arch/arm/mach-omap2/omap_hwmod_2430.h | 4 ++-- arch/arm/mach-omap2/omap_hwmod_34xx.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/arm/mach-omap2/omap_hwmod_2430.h b/arch/arm/mach-omap2/omap_hwmod_2430.h index 0ae23f3..48077c7 100644 --- a/arch/arm/mach-omap2/omap_hwmod_2430.h +++ b/arch/arm/mach-omap2/omap_hwmod_2430.h @@ -170,8 +170,8 @@ static struct omap_hwmod omap2430_mpu_hwmod = { /* MMC/SD/SDIO common */ static struct omap_hwmod_sysconfig mmc_if_ctrl = { - .rev_offs = 0x10, - .sysc_offs = 0x14, + .sysc_offs = 0x10, + .syss_offs = 0x14, .sysc_flags = (SYSC_HAS_CLOCKACTIVITY | SYSC_HAS_SIDLEMODE | SYSC_HAS_ENAWAKEUP | SYSC_HAS_SOFTRESET | SYSC_HAS_AUTOIDLE | SYSS_MISSING), diff --git a/arch/arm/mach-omap2/omap_hwmod_34xx.h b/arch/arm/mach-omap2/omap_hwmod_34xx.h index afc3cd4..34319c3 100644 --- a/arch/arm/mach-omap2/omap_hwmod_34xx.h +++ b/arch/arm/mach-omap2/omap_hwmod_34xx.h @@ -236,8 +236,8 @@ static struct omap_hwmod omap34xx_mpu_hwmod = { /* MMC/SD/SDIO common */ static struct omap_hwmod_sysconfig mmc_if_ctrl = { - .rev_offs = 0x10, - .sysc_offs = 0x14, + .sysc_offs = 0x10, + .syss_offs = 0x14, .sysc_flags = (SYSC_HAS_CLOCKACTIVITY | SYSC_HAS_SIDLEMODE | SYSC_HAS_ENAWAKEUP | SYSC_HAS_SOFTRESET | SYSC_HAS_AUTOIDLE),