From patchwork Fri Nov 19 01:54:51 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nishanth Menon X-Patchwork-Id: 338131 X-Patchwork-Delegate: khilman@deeprootsystems.com Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id oAJ1tCVn025169 for ; Fri, 19 Nov 2010 01:55:37 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760300Ab0KSBzQ (ORCPT ); Thu, 18 Nov 2010 20:55:16 -0500 Received: from devils.ext.ti.com ([198.47.26.153]:55452 "EHLO devils.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757095Ab0KSBzC (ORCPT ); Thu, 18 Nov 2010 20:55:02 -0500 Received: from dlep34.itg.ti.com ([157.170.170.115]) by devils.ext.ti.com (8.13.7/8.13.7) with ESMTP id oAJ1t0Gp030768 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 18 Nov 2010 19:55:00 -0600 Received: from legion.dal.design.ti.com (localhost [127.0.0.1]) by dlep34.itg.ti.com (8.13.7/8.13.7) with ESMTP id oAJ1t052016901; Thu, 18 Nov 2010 19:55:00 -0600 (CST) Received: from senorita (senorita.am.dhcp.ti.com [128.247.74.250]) by legion.dal.design.ti.com (8.11.7p1+Sun/8.11.7) with ESMTP id oAJ1sxf12091; Thu, 18 Nov 2010 19:54:59 -0600 (CST) Received: by senorita (Postfix, from userid 1000) id 07E53C24D; Thu, 18 Nov 2010 19:54:58 -0600 (CST) From: Nishanth Menon To: linux-omap Cc: Kevin , Jean Pihet , Vishwanath Sripathy , Tony Subject: [PATCH 06/13] OMAP3: PM: Fix secure save size for OMAP3 Date: Thu, 18 Nov 2010 19:54:51 -0600 Message-Id: <1290131698-6194-7-git-send-email-nm@ti.com> X-Mailer: git-send-email 1.6.3.3 In-Reply-To: <1290131698-6194-1-git-send-email-nm@ti.com> References: <1290131698-6194-1-git-send-email-nm@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.3 (demeter1.kernel.org [140.211.167.41]); Fri, 19 Nov 2010 01:55:38 +0000 (UTC) diff --git a/arch/arm/mach-omap2/pm34xx.c b/arch/arm/mach-omap2/pm34xx.c index b20ecf5..bbb1a40 100644 --- a/arch/arm/mach-omap2/pm34xx.c +++ b/arch/arm/mach-omap2/pm34xx.c @@ -56,7 +56,7 @@ /* Secure ram save size - store the defaults */ static struct omap3_secure_copy_data secure_copy_data = { - .size = 0x803F, + .size = 0xF040, /* 60k + 64 byte header */ .save_every_cycle = false, /* explicit for readability */ };