From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752028AbdB0LsX (ORCPT ); Mon, 27 Feb 2017 06:48:23 -0500 Received: from bhuna.collabora.co.uk ([46.235.227.227]:36479 "EHLO bhuna.collabora.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751778AbdB0LsL (ORCPT ); Mon, 27 Feb 2017 06:48:11 -0500 Date: Mon, 27 Feb 2017 12:20:00 +0100 From: Peter Senna Tschudin To: Romain Perier Cc: Dan Williams , Doug Ledford , Sean Hefty , Hal Rosenstock , jeffrey.t.kirsher@intel.com, "David S. Miller" , stas.yakovlev@gmail.com, "James E.J. Bottomley" , "Martin K. Petersen" , Felipe Balbi , Greg Kroah-Hartman , linux-rdma@vger.kernel.org, netdev@vger.kernel.org, linux-usb@vger.kernel.org, linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org, Peter Senna Tschudin Subject: Re: [PATCH v3 18/20] usb: host: Remove remaining pci_pool in comments Message-ID: <20170227112000.GI26544@collabora.com> References: <20170226192425.13098-1-romain.perier@collabora.com> <20170226192425.13098-19-romain.perier@collabora.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170226192425.13098-19-romain.perier@collabora.com> User-Agent: Mutt/1.7.1 (2016-10-04) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, Feb 26, 2017 at 08:24:23PM +0100, Romain Perier wrote: > This replaces remaining occurences of pci_pool by dma_pool, as > this is the new API that could be used for that purpose. > Reviewed-by: Peter Senna Tschudin > Signed-off-by: Romain Perier > --- > drivers/usb/host/ehci-hcd.c | 2 +- > drivers/usb/host/fotg210-hcd.c | 2 +- > drivers/usb/host/oxu210hp-hcd.c | 2 +- > 3 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c > index ac2c4ea..6e834b83 100644 > --- a/drivers/usb/host/ehci-hcd.c > +++ b/drivers/usb/host/ehci-hcd.c > @@ -597,7 +597,7 @@ static int ehci_run (struct usb_hcd *hcd) > /* > * hcc_params controls whether ehci->regs->segment must (!!!) > * be used; it constrains QH/ITD/SITD and QTD locations. > - * pci_pool consistent memory always uses segment zero. > + * dma_pool consistent memory always uses segment zero. > * streaming mappings for I/O buffers, like pci_map_single(), > * can return segments above 4GB, if the device allows. > * > diff --git a/drivers/usb/host/fotg210-hcd.c b/drivers/usb/host/fotg210-hcd.c > index 1c5b34b..ced08dc 100644 > --- a/drivers/usb/host/fotg210-hcd.c > +++ b/drivers/usb/host/fotg210-hcd.c > @@ -5047,7 +5047,7 @@ static int fotg210_run(struct usb_hcd *hcd) > /* > * hcc_params controls whether fotg210->regs->segment must (!!!) > * be used; it constrains QH/ITD/SITD and QTD locations. > - * pci_pool consistent memory always uses segment zero. > + * dma_pool consistent memory always uses segment zero. > * streaming mappings for I/O buffers, like pci_map_single(), > * can return segments above 4GB, if the device allows. > * > diff --git a/drivers/usb/host/oxu210hp-hcd.c b/drivers/usb/host/oxu210hp-hcd.c > index bcf531c..ed20fb3 100644 > --- a/drivers/usb/host/oxu210hp-hcd.c > +++ b/drivers/usb/host/oxu210hp-hcd.c > @@ -2708,7 +2708,7 @@ static int oxu_run(struct usb_hcd *hcd) > > /* hcc_params controls whether oxu->regs->segment must (!!!) > * be used; it constrains QH/ITD/SITD and QTD locations. > - * pci_pool consistent memory always uses segment zero. > + * dma_pool consistent memory always uses segment zero. > * streaming mappings for I/O buffers, like pci_map_single(), > * can return segments above 4GB, if the device allows. > * > -- > 2.9.3 >