From patchwork Tue Dec 14 13:07:26 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: 409821 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 oBED7VmF015483 for ; Tue, 14 Dec 2010 13:07:31 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759292Ab0LNNGt (ORCPT ); Tue, 14 Dec 2010 08:06:49 -0500 Received: from na3sys009aog108.obsmtp.com ([74.125.149.199]:50848 "EHLO na3sys009aog108.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759274Ab0LNNGr (ORCPT ); Tue, 14 Dec 2010 08:06:47 -0500 Received: from source ([209.85.161.169]) by na3sys009aob108.postini.com ([74.125.148.12]) with SMTP ID DSNKTQdr5ty0xifyMAlc69Gmc+Mm3V9nH5QS@postini.com; Tue, 14 Dec 2010 05:06:47 PST Received: by mail-gx0-f169.google.com with SMTP id 5so407983gxk.14 for ; Tue, 14 Dec 2010 05:06:46 -0800 (PST) Received: by 10.150.12.7 with SMTP id 7mr7992691ybl.64.1292332006636; Tue, 14 Dec 2010 05:06:46 -0800 (PST) Received: from localhost.localdomain (cpe-66-25-41-139.tx.res.rr.com [66.25.41.139]) by mx.google.com with ESMTPS id r41sm71759yba.16.2010.12.14.05.06.44 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 14 Dec 2010 05:06:45 -0800 (PST) From: Fernando Guzman Lugo To: , , Cc: , , , , , "Guzman Lugo, Fernando" Subject: [PATCHv6 3/4] omap: iovmm - replace __iounmap with iounmap Date: Tue, 14 Dec 2010 07:07:26 -0600 Message-Id: <1292332047-8206-4-git-send-email-fernando.lugo@ti.com> X-Mailer: git-send-email 1.7.3.2 In-Reply-To: <1292332047-8206-1-git-send-email-fernando.lugo@ti.com> References: <1292332047-8206-1-git-send-email-fernando.lugo@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]); Tue, 14 Dec 2010 13:07:32 +0000 (UTC) diff --git a/arch/arm/plat-omap/iovmm.c b/arch/arm/plat-omap/iovmm.c index 93a34d9..fa6e643 100644 --- a/arch/arm/plat-omap/iovmm.c +++ b/arch/arm/plat-omap/iovmm.c @@ -821,7 +821,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)iounmap, IOVMF_LINEAR | IOVMF_MMIO); if (!sgt) dev_dbg(obj->dev, "%s: No sgt\n", __func__);