From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.6 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 25040C43603 for ; Tue, 17 Dec 2019 10:59:15 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id DF50A2064B for ; Tue, 17 Dec 2019 10:59:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1576580355; bh=earumEdZNTDpsNDpvOr9SXNYoRmK3/hYz59yXC3bFyw=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=j1CiOdggAhbVeUbgxUpslPF/GTp8OnpDEIA757WiKVNnVEjNyHQzo8j1F1Hv5Exn9 03j5CD9dWYMkqOD2ViCDY0JlVFrnE2JKdcrRZydZ/FjJRSbcV0EclTEZw3TwW+JyNy o88AUrokxrbBqInDAQfGjPaGtvgBb8W/deLgfYO0= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727483AbfLQK7O (ORCPT ); Tue, 17 Dec 2019 05:59:14 -0500 Received: from mail.kernel.org ([198.145.29.99]:39884 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726487AbfLQK7N (ORCPT ); Tue, 17 Dec 2019 05:59:13 -0500 Received: from willie-the-truck (236.31.169.217.in-addr.arpa [217.169.31.236]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 613722082E; Tue, 17 Dec 2019 10:59:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1576580353; bh=earumEdZNTDpsNDpvOr9SXNYoRmK3/hYz59yXC3bFyw=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=EyrwcL0j1bZOE032d+pitw22XQzicjfOzMcEpoT5hCmtVN5KDkPmL0xTS6Vcm/D+j ZpNuo/kzmAKyoR6quRCa0kEGJthxSxjXrHMZiAatvrUkitijsdhJkcSeY5gU2HEH5N A3an6IVm/4sCOTWgDae6L13mNYoAYQJOT2kZWtRw= Date: Tue, 17 Dec 2019 10:59:07 +0000 From: Will Deacon To: Thierry Reding Cc: Joerg Roedel , Robin Murphy , David Woodhouse , Jean-Philippe Brucker , Christoph Hellwig , iommu@lists.linux-foundation.org, linux-arm-kernel@lists.infradead.org, virtualization@lists.linux-foundation.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 2/5] iommu: arm: Use iommu_put_resv_regions_simple() Message-ID: <20191217105907.GA32012@willie-the-truck> References: <20191209145007.2433144-1-thierry.reding@gmail.com> <20191209145007.2433144-3-thierry.reding@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191209145007.2433144-3-thierry.reding@gmail.com> User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Dec 09, 2019 at 03:50:04PM +0100, Thierry Reding wrote: > From: Thierry Reding > > Use the new standard function instead of open-coding it. > > Cc: Will Deacon > Cc: Robin Murphy > Signed-off-by: Thierry Reding > --- > drivers/iommu/arm-smmu-v3.c | 11 +---------- > drivers/iommu/arm-smmu.c | 11 +---------- > 2 files changed, 2 insertions(+), 20 deletions(-) Acked-by: Will Deacon Will