Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1300515

Re: [PATCH 2/9] drm/gma500: use to_pci_dev()

From Daniel Vetter <daniel@ffwll.ch>
Newsgroups linux.kernel
Subject Re: [PATCH 2/9] drm/gma500: use to_pci_dev()
Date 2016-01-04 08:00 +0100
Message-ID <qN7hv-832-1@gated-at.bofh.it> (permalink)
References <qKh3H-5KU-3@gated-at.bofh.it> <qKh3H-5KU-5@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Sun, Dec 27, 2015 at 06:45:58PM +0800, Geliang Tang wrote:
> Use to_pci_dev() instead of open-coding it.
> 
> Signed-off-by: Geliang Tang <geliangtang@163.com>

Applied to drm-misc, thanks.
-Daniel

> ---
>  drivers/gpu/drm/gma500/power.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/gma500/power.c b/drivers/gpu/drm/gma500/power.c
> index b6b135f..bea8578 100644
> --- a/drivers/gpu/drm/gma500/power.c
> +++ b/drivers/gpu/drm/gma500/power.c
> @@ -187,7 +187,7 @@ static bool gma_resume_pci(struct pci_dev *pdev)
>   */
>  int gma_power_suspend(struct device *_dev)
>  {
> -	struct pci_dev *pdev = container_of(_dev, struct pci_dev, dev);
> +	struct pci_dev *pdev = to_pci_dev(_dev);
>  	struct drm_device *dev = pci_get_drvdata(pdev);
>  	struct drm_psb_private *dev_priv = dev->dev_private;
>  
> @@ -214,7 +214,7 @@ int gma_power_suspend(struct device *_dev)
>   */
>  int gma_power_resume(struct device *_dev)
>  {
> -	struct pci_dev *pdev = container_of(_dev, struct pci_dev, dev);
> +	struct pci_dev *pdev = to_pci_dev(_dev);
>  	struct drm_device *dev = pci_get_drvdata(pdev);
>  
>  	mutex_lock(&power_mutex);
> -- 
> 2.5.0
> 
> 
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/dri-devel

-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

Re: [PATCH 2/9] drm/gma500: use to_pci_dev() Daniel Vetter <daniel@ffwll.ch> - 2016-01-04 08:00 +0100

csiph-web