linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] drivers: gpu: Remove duplicate include of amdgpu_hdp.h
@ 2021-03-22 12:02 Wan Jiabing
  2021-03-22 12:09 ` Christian König
  0 siblings, 1 reply; 3+ messages in thread
From: Wan Jiabing @ 2021-03-22 12:02 UTC (permalink / raw)
  To: Alex Deucher, Christian König, David Airlie, Daniel Vetter,
	Hawking Zhang, Evan Quan, Felix Kuehling, Luben Tuikov,
	Dennis Li, Andrey Grodzovsky, Jonathan Kim, amd-gfx, dri-devel,
	linux-kernel
  Cc: kael_w, Wan Jiabing

amdgpu_hdp.h has been included at line 91, so remove
the duplicate include.

Signed-off-by: Wan Jiabing <wanjiabing@vivo.com>
---
 drivers/gpu/drm/amd/amdgpu/amdgpu.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu.h b/drivers/gpu/drm/amd/amdgpu/amdgpu.h
index 49267eb64302..68836c22ef25 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu.h
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu.h
@@ -107,7 +107,6 @@
 #include "amdgpu_gfxhub.h"
 #include "amdgpu_df.h"
 #include "amdgpu_smuio.h"
-#include "amdgpu_hdp.h"
 
 #define MAX_GPU_INSTANCE		16
 
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] drivers: gpu: Remove duplicate include of amdgpu_hdp.h
  2021-03-22 12:02 [PATCH] drivers: gpu: Remove duplicate include of amdgpu_hdp.h Wan Jiabing
@ 2021-03-22 12:09 ` Christian König
  2021-03-23 14:58   ` Alex Deucher
  0 siblings, 1 reply; 3+ messages in thread
From: Christian König @ 2021-03-22 12:09 UTC (permalink / raw)
  To: Wan Jiabing, Alex Deucher, David Airlie, Daniel Vetter,
	Hawking Zhang, Evan Quan, Felix Kuehling, Luben Tuikov,
	Dennis Li, Andrey Grodzovsky, Jonathan Kim, amd-gfx, dri-devel,
	linux-kernel
  Cc: kael_w



Am 22.03.21 um 13:02 schrieb Wan Jiabing:
> amdgpu_hdp.h has been included at line 91, so remove
> the duplicate include.
>
> Signed-off-by: Wan Jiabing <wanjiabing@vivo.com>

Acked-by: Christian König <christian.koenig@amd.com>

> ---
>   drivers/gpu/drm/amd/amdgpu/amdgpu.h | 1 -
>   1 file changed, 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu.h b/drivers/gpu/drm/amd/amdgpu/amdgpu.h
> index 49267eb64302..68836c22ef25 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu.h
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu.h
> @@ -107,7 +107,6 @@
>   #include "amdgpu_gfxhub.h"
>   #include "amdgpu_df.h"
>   #include "amdgpu_smuio.h"
> -#include "amdgpu_hdp.h"
>   
>   #define MAX_GPU_INSTANCE		16
>   


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] drivers: gpu: Remove duplicate include of amdgpu_hdp.h
  2021-03-22 12:09 ` Christian König
@ 2021-03-23 14:58   ` Alex Deucher
  0 siblings, 0 replies; 3+ messages in thread
From: Alex Deucher @ 2021-03-23 14:58 UTC (permalink / raw)
  To: Christian König
  Cc: Wan Jiabing, Alex Deucher, David Airlie, Daniel Vetter,
	Hawking Zhang, Evan Quan, Felix Kuehling, Luben Tuikov,
	Dennis Li, Andrey Grodzovsky, Jonathan Kim, amd-gfx list,
	Maling list - DRI developers, LKML, kael_w

Applied.  Thanks!

Alex

On Mon, Mar 22, 2021 at 8:10 AM Christian König
<christian.koenig@amd.com> wrote:
>
>
>
> Am 22.03.21 um 13:02 schrieb Wan Jiabing:
> > amdgpu_hdp.h has been included at line 91, so remove
> > the duplicate include.
> >
> > Signed-off-by: Wan Jiabing <wanjiabing@vivo.com>
>
> Acked-by: Christian König <christian.koenig@amd.com>
>
> > ---
> >   drivers/gpu/drm/amd/amdgpu/amdgpu.h | 1 -
> >   1 file changed, 1 deletion(-)
> >
> > diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu.h b/drivers/gpu/drm/amd/amdgpu/amdgpu.h
> > index 49267eb64302..68836c22ef25 100644
> > --- a/drivers/gpu/drm/amd/amdgpu/amdgpu.h
> > +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu.h
> > @@ -107,7 +107,6 @@
> >   #include "amdgpu_gfxhub.h"
> >   #include "amdgpu_df.h"
> >   #include "amdgpu_smuio.h"
> > -#include "amdgpu_hdp.h"
> >
> >   #define MAX_GPU_INSTANCE            16
> >
>
> _______________________________________________
> amd-gfx mailing list
> amd-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-03-23 14:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-22 12:02 [PATCH] drivers: gpu: Remove duplicate include of amdgpu_hdp.h Wan Jiabing
2021-03-22 12:09 ` Christian König
2021-03-23 14:58   ` Alex Deucher

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).