diff mbox

[1/1] DSPBRIDGE Fix condition statement for Global Flush

Message ID EAF47CD23C76F840A9E7FCE10091EFAB02A40C11FF@dbde02.ent.ti.com (mailing list archive)
State Not Applicable, archived
Headers show

Commit Message

Gupta, Ramesh Feb. 12, 2009, 12:28 p.m. UTC
From c04f200032378b9b56a1ac8e66f80c953f5707a5 Mon Sep 17 00:00:00 2001
From: Ramesh Gupta G <grgupta@ti.com>
Date: Thu, 12 Feb 2009 17:57:21 +0530
Subject: [PATCH 1/1] DSPBRIDGE Fix condition statement for Global Flush

This fixes the condition statement with the original patch
set.

Signed-off-by: Ramesh Gupta G <grgupta@ti.com>
---
 drivers/dsp/bridge/wmd/tiomap3430.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

--
1.5.3.2--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/dsp/bridge/wmd/tiomap3430.c b/drivers/dsp/bridge/wmd/tiomap3430.c
index 23fefcf..b093640 100644
--- a/drivers/dsp/bridge/wmd/tiomap3430.c
+++ b/drivers/dsp/bridge/wmd/tiomap3430.c
@@ -1472,7 +1472,8 @@  func_cont:
                WakeDSP(pDevContext, NULL);
                HW_MMU_TLBFlushAll(pDevContext->dwDSPMmuBase);
                CLK_Disable(SERVICESCLK_iva2_ck);
-       }
+       } else
+               HW_MMU_TLBFlushAll(pDevContext->dwDSPMmuBase);
        DBG_Trace(DBG_ENTER, "< WMD_BRD_MemMap status %x\n", status);
        return status;
 }