From patchwork Fri Oct 1 03:08:55 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: 222402 X-Patchwork-Delegate: hiroshi.doyu@nokia.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 o912ugJa019841 for ; Fri, 1 Oct 2010 02:56:43 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754766Ab0JACz7 (ORCPT ); Thu, 30 Sep 2010 22:55:59 -0400 Received: from bear.ext.ti.com ([192.94.94.41]:46127 "EHLO bear.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752833Ab0JACz2 (ORCPT ); Thu, 30 Sep 2010 22:55:28 -0400 Received: from dlep34.itg.ti.com ([157.170.170.115]) by bear.ext.ti.com (8.13.7/8.13.7) with ESMTP id o912tOtt011295 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 30 Sep 2010 21:55:24 -0500 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 o912tNb5012649; Thu, 30 Sep 2010 21:55:23 -0500 (CDT) Received: from localhost (x0095840-desktop.am.dhcp.ti.com [128.247.77.44]) by legion.dal.design.ti.com (8.11.7p1+Sun/8.11.7) with ESMTP id o912tNf16739; Thu, 30 Sep 2010 21:55:23 -0500 (CDT) From: Fernando Guzman Lugo To: Cc: , , , , , Fernando Guzman Lugo Subject: [PATCH 4/4] iovmm: replace __iounmap with omap_iounmap Date: Thu, 30 Sep 2010 22:08:55 -0500 Message-Id: <1285902536-7043-5-git-send-email-x0095840@ti.com> X-Mailer: git-send-email 1.6.3.3 In-Reply-To: <1285902536-7043-4-git-send-email-x0095840@ti.com> References: <1285902536-7043-1-git-send-email-x0095840@ti.com> <1285902536-7043-2-git-send-email-x0095840@ti.com> <1285902536-7043-3-git-send-email-x0095840@ti.com> <1285902536-7043-4-git-send-email-x0095840@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, 01 Oct 2010 02:56:43 +0000 (UTC) diff --git a/arch/arm/plat-omap/iovmm.c b/arch/arm/plat-omap/iovmm.c old mode 100644 new mode 100755 index e7ffec8..326776d --- a/arch/arm/plat-omap/iovmm.c +++ b/arch/arm/plat-omap/iovmm.c @@ -824,7 +824,7 @@ void iommu_kunmap(struct iommu *obj, u32 da) struct sg_table *sgt; typedef void (*func_t)(const void *); - sgt = unmap_vm_area(obj, da, (func_t)__iounmap, + sgt = unmap_vm_area(obj, da, (func_t)omap_iounmap, IOVMF_LINEAR | IOVMF_MMIO); if (!sgt) dev_dbg(obj->dev, "%s: No sgt\n", __func__);