From patchwork Wed May 19 01:22:02 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Guzman Lugo, Fernando" X-Patchwork-Id: 100671 X-Patchwork-Delegate: omar.ramirez@ti.com Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o4J1MB9Z010271 for ; Wed, 19 May 2010 01:22:11 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754749Ab0ESBWJ (ORCPT ); Tue, 18 May 2010 21:22:09 -0400 Received: from arroyo.ext.ti.com ([192.94.94.40]:41376 "EHLO arroyo.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754725Ab0ESBWH convert rfc822-to-8bit (ORCPT ); Tue, 18 May 2010 21:22:07 -0400 Received: from dlep35.itg.ti.com ([157.170.170.118]) by arroyo.ext.ti.com (8.13.7/8.13.7) with ESMTP id o4J1M4Y3005139 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 18 May 2010 20:22:04 -0500 Received: from dlep26.itg.ti.com (localhost [127.0.0.1]) by dlep35.itg.ti.com (8.13.7/8.13.7) with ESMTP id o4J1M32w001723; Tue, 18 May 2010 20:22:03 -0500 (CDT) Received: from dlee73.ent.ti.com (localhost [127.0.0.1]) by dlep26.itg.ti.com (8.13.8/8.13.8) with ESMTP id o4J1M3na022327; Tue, 18 May 2010 20:22:03 -0500 (CDT) Received: from dlee06.ent.ti.com ([157.170.170.11]) by dlee73.ent.ti.com ([157.170.170.88]) with mapi; Tue, 18 May 2010 20:22:03 -0500 From: "Guzman Lugo, Fernando" To: "linux-omap@vger.kernel.org" CC: Hiroshi DOYU , Ameya Palande , "Ramirez Luna, Omar" , Felipe Contreras Date: Tue, 18 May 2010 20:22:02 -0500 Subject: [PATCH] DSPBRIDGE: fix incorrect reset in bridge_brd_start function Thread-Topic: [PATCH] DSPBRIDGE: fix incorrect reset in bridge_brd_start function Thread-Index: Acr28a9ARnm0EOpSTFGaUZiaGOoApg== Message-ID: <496565EC904933469F292DDA3F1663E602CB7A83DB@dlee06.ent.ti.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US MIME-Version: 1.0 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 (demeter.kernel.org [140.211.167.41]); Wed, 19 May 2010 01:22:11 +0000 (UTC) diff --git a/drivers/dsp/bridge/core/tiomap3430.c b/drivers/dsp/bridge/core/tiomap3430.c index c7b0d83..805e6f3 100644 --- a/drivers/dsp/bridge/core/tiomap3430.c +++ b/drivers/dsp/bridge/core/tiomap3430.c @@ -443,7 +443,7 @@ static dsp_status bridge_brd_start(struct bridge_dev_context *hDevContext, /* Reset and Unreset the RST2, so that BOOTADDR is copied to * IVA2 SYSC register */ (*pdata->dsp_prm_rmw_bits)(OMAP3430_RST2_IVA2, - OMAP3430_RST1_IVA2, OMAP3430_IVA2_MOD, RM_RSTCTRL); + OMAP3430_RST2_IVA2, OMAP3430_IVA2_MOD, RM_RSTCTRL); udelay(100); (*pdata->dsp_prm_rmw_bits)(OMAP3430_RST2_IVA2, 0, OMAP3430_IVA2_MOD, RM_RSTCTRL);