[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20180510133104.GG173327@bhelgaas-glaptop.roam.corp.google.com>
Date: Thu, 10 May 2018 08:31:04 -0500
From: Bjorn Helgaas <helgaas@...nel.org>
To: Oza Pawandeep <poza@...eaurora.org>
Cc: Bjorn Helgaas <bhelgaas@...gle.com>,
Philippe Ombredanne <pombredanne@...b.com>,
Thomas Gleixner <tglx@...utronix.de>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Kate Stewart <kstewart@...uxfoundation.org>,
linux-pci@...r.kernel.org, linux-kernel@...r.kernel.org,
Dongdong Liu <liudongdong3@...wei.com>,
Keith Busch <keith.busch@...el.com>, Wei Zhang <wzhang@...com>,
Sinan Kaya <okaya@...eaurora.org>,
Timur Tabi <timur@...eaurora.org>
Subject: Re: [PATCH v15 7/9] PCI/PORTDRV: Implement generic find device
On Thu, May 03, 2018 at 01:03:56AM -0400, Oza Pawandeep wrote:
> This patch implements generic pcie_port_find_device() routine.
> ...
> + * pcie_port_find_device - find the struct device
> + * @dev: PCI Express port the service devices associated with
> + * @service: For the service to find
> + *
> + * Find PCI Express port service driver associated with given service
> + */
> +struct device *pcie_port_find_device(struct pci_dev *dev,
s/struct device/struct device/ (remove extra space)
> + u32 service)
> +{
> + struct device *device;
> + struct portdrv_service_data pdrvs;
> +
> + pdrvs.dev = NULL;
> + pdrvs.service = service;
> + device_for_each_child(&dev->dev, &pdrvs, find_service_iter);
> +
> + device = pdrvs.dev;
> + return device;
> +}
> +
> +/**
Powered by blists - more mailing lists