All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] drm/amdgpu: remove set but not used variables
@ 2020-04-30  2:26 ` Zheng Bin
  0 siblings, 0 replies; 12+ messages in thread
From: Zheng Bin @ 2020-04-30  2:26 UTC (permalink / raw)
  To: alexander.deucher, christian.koenig, David1.Zhou, airlied,
	daniel, amd-gfx, dri-devel
  Cc: zhengbin13

Zheng Bin (3):
  drm/amdgpu: remove set but not used variable 'priority'
  drm/amdgpu: remove set but not used variable 'direct_poll' in
    vcn_v2_0.c
  drm/amdgpu: remove set but not used variable 'direct_poll' in
    vcn_v2_5.c

 drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | 2 --
 drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c  | 3 ---
 drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c  | 2 --
 3 files changed, 7 deletions(-)

--
2.26.0.106.g9fadedd

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* [PATCH 0/3] drm/amdgpu: remove set but not used variables
@ 2020-04-30  2:26 ` Zheng Bin
  0 siblings, 0 replies; 12+ messages in thread
From: Zheng Bin @ 2020-04-30  2:26 UTC (permalink / raw)
  To: alexander.deucher, christian.koenig, David1.Zhou, airlied,
	daniel, amd-gfx, dri-devel
  Cc: zhengbin13

Zheng Bin (3):
  drm/amdgpu: remove set but not used variable 'priority'
  drm/amdgpu: remove set but not used variable 'direct_poll' in
    vcn_v2_0.c
  drm/amdgpu: remove set but not used variable 'direct_poll' in
    vcn_v2_5.c

 drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | 2 --
 drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c  | 3 ---
 drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c  | 2 --
 3 files changed, 7 deletions(-)

--
2.26.0.106.g9fadedd

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

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

* [PATCH 1/3] drm/amdgpu: remove set but not used variable 'priority'
  2020-04-30  2:26 ` Zheng Bin
@ 2020-04-30  2:26   ` Zheng Bin
  -1 siblings, 0 replies; 12+ messages in thread
From: Zheng Bin @ 2020-04-30  2:26 UTC (permalink / raw)
  To: alexander.deucher, christian.koenig, David1.Zhou, airlied,
	daniel, amd-gfx, dri-devel
  Cc: zhengbin13

Fixes gcc '-Wunused-but-set-variable' warning:

drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c:1211:26: warning: variable ‘priority’ set but not used

It is not used since commit 33abcb1f5a17 ("drm/amdgpu:
set compute queue priority at mqd_init")

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zheng Bin <zhengbin13@huawei.com>
---
 drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
index 7653f62b1b2d..19070226a945 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
@@ -1208,7 +1208,6 @@ static int amdgpu_cs_submit(struct amdgpu_cs_parser *p,
 {
 	struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
 	struct drm_sched_entity *entity = p->entity;
-	enum drm_sched_priority priority;
 	struct amdgpu_bo_list_entry *e;
 	struct amdgpu_job *job;
 	uint64_t seq;
@@ -1258,7 +1257,6 @@ static int amdgpu_cs_submit(struct amdgpu_cs_parser *p,

 	trace_amdgpu_cs_ioctl(job);
 	amdgpu_vm_bo_trace_cs(&fpriv->vm, &p->ticket);
-	priority = job->base.s_priority;
 	drm_sched_entity_push_job(&job->base, entity);

 	amdgpu_vm_move_to_lru_tail(p->adev, &fpriv->vm);
--
2.26.0.106.g9fadedd

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* [PATCH 1/3] drm/amdgpu: remove set but not used variable 'priority'
@ 2020-04-30  2:26   ` Zheng Bin
  0 siblings, 0 replies; 12+ messages in thread
From: Zheng Bin @ 2020-04-30  2:26 UTC (permalink / raw)
  To: alexander.deucher, christian.koenig, David1.Zhou, airlied,
	daniel, amd-gfx, dri-devel
  Cc: zhengbin13

Fixes gcc '-Wunused-but-set-variable' warning:

drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c:1211:26: warning: variable ‘priority’ set but not used

It is not used since commit 33abcb1f5a17 ("drm/amdgpu:
set compute queue priority at mqd_init")

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zheng Bin <zhengbin13@huawei.com>
---
 drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
index 7653f62b1b2d..19070226a945 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
@@ -1208,7 +1208,6 @@ static int amdgpu_cs_submit(struct amdgpu_cs_parser *p,
 {
 	struct amdgpu_fpriv *fpriv = p->filp->driver_priv;
 	struct drm_sched_entity *entity = p->entity;
-	enum drm_sched_priority priority;
 	struct amdgpu_bo_list_entry *e;
 	struct amdgpu_job *job;
 	uint64_t seq;
@@ -1258,7 +1257,6 @@ static int amdgpu_cs_submit(struct amdgpu_cs_parser *p,

 	trace_amdgpu_cs_ioctl(job);
 	amdgpu_vm_bo_trace_cs(&fpriv->vm, &p->ticket);
-	priority = job->base.s_priority;
 	drm_sched_entity_push_job(&job->base, entity);

 	amdgpu_vm_move_to_lru_tail(p->adev, &fpriv->vm);
--
2.26.0.106.g9fadedd

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

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

* [PATCH 2/3] drm/amdgpu: remove set but not used variable 'direct_poll' in vcn_v2_0.c
  2020-04-30  2:26 ` Zheng Bin
@ 2020-04-30  2:26   ` Zheng Bin
  -1 siblings, 0 replies; 12+ messages in thread
From: Zheng Bin @ 2020-04-30  2:26 UTC (permalink / raw)
  To: alexander.deucher, christian.koenig, David1.Zhou, airlied,
	daniel, amd-gfx, dri-devel
  Cc: zhengbin13

Fixes gcc '-Wunused-but-set-variable' warning:

drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c:1848:39: warning: variable ‘direct_poll’ set but not used [-Wunused-but-set-variable]

It is introduced by commit dd26858a9cd8 ("drm/amdgpu:
implement initialization part on VCN2.0 for SRIOV"), but never used,
so remove it.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zheng Bin <zhengbin13@huawei.com>
---
 drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c b/drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c
index 349da7bf7c68..90ed773695ea 100644
--- a/drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c
@@ -1845,7 +1845,6 @@ static int vcn_v2_0_start_sriov(struct amdgpu_device *adev)
 	uint32_t table_size = 0;
 	struct mmsch_v2_0_cmd_direct_write direct_wt = { {0} };
 	struct mmsch_v2_0_cmd_direct_read_modify_write direct_rd_mod_wt = { {0} };
-	struct mmsch_v2_0_cmd_direct_polling direct_poll = { {0} };
 	struct mmsch_v2_0_cmd_end end = { {0} };
 	struct mmsch_v2_0_init_header *header;
 	uint32_t *init_table = adev->virt.mm_table.cpu_addr;
@@ -1855,8 +1854,6 @@ static int vcn_v2_0_start_sriov(struct amdgpu_device *adev)
 	direct_wt.cmd_header.command_type = MMSCH_COMMAND__DIRECT_REG_WRITE;
 	direct_rd_mod_wt.cmd_header.command_type =
 		MMSCH_COMMAND__DIRECT_REG_READ_MODIFY_WRITE;
-	direct_poll.cmd_header.command_type =
-		MMSCH_COMMAND__DIRECT_REG_POLLING;
 	end.cmd_header.command_type = MMSCH_COMMAND__END;

 	if (header->vcn_table_offset == 0 && header->vcn_table_size == 0) {
--
2.26.0.106.g9fadedd

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* [PATCH 2/3] drm/amdgpu: remove set but not used variable 'direct_poll' in vcn_v2_0.c
@ 2020-04-30  2:26   ` Zheng Bin
  0 siblings, 0 replies; 12+ messages in thread
From: Zheng Bin @ 2020-04-30  2:26 UTC (permalink / raw)
  To: alexander.deucher, christian.koenig, David1.Zhou, airlied,
	daniel, amd-gfx, dri-devel
  Cc: zhengbin13

Fixes gcc '-Wunused-but-set-variable' warning:

drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c:1848:39: warning: variable ‘direct_poll’ set but not used [-Wunused-but-set-variable]

It is introduced by commit dd26858a9cd8 ("drm/amdgpu:
implement initialization part on VCN2.0 for SRIOV"), but never used,
so remove it.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zheng Bin <zhengbin13@huawei.com>
---
 drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c b/drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c
index 349da7bf7c68..90ed773695ea 100644
--- a/drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c
@@ -1845,7 +1845,6 @@ static int vcn_v2_0_start_sriov(struct amdgpu_device *adev)
 	uint32_t table_size = 0;
 	struct mmsch_v2_0_cmd_direct_write direct_wt = { {0} };
 	struct mmsch_v2_0_cmd_direct_read_modify_write direct_rd_mod_wt = { {0} };
-	struct mmsch_v2_0_cmd_direct_polling direct_poll = { {0} };
 	struct mmsch_v2_0_cmd_end end = { {0} };
 	struct mmsch_v2_0_init_header *header;
 	uint32_t *init_table = adev->virt.mm_table.cpu_addr;
@@ -1855,8 +1854,6 @@ static int vcn_v2_0_start_sriov(struct amdgpu_device *adev)
 	direct_wt.cmd_header.command_type = MMSCH_COMMAND__DIRECT_REG_WRITE;
 	direct_rd_mod_wt.cmd_header.command_type =
 		MMSCH_COMMAND__DIRECT_REG_READ_MODIFY_WRITE;
-	direct_poll.cmd_header.command_type =
-		MMSCH_COMMAND__DIRECT_REG_POLLING;
 	end.cmd_header.command_type = MMSCH_COMMAND__END;

 	if (header->vcn_table_offset == 0 && header->vcn_table_size == 0) {
--
2.26.0.106.g9fadedd

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

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

* [PATCH 3/3] drm/amdgpu: remove set but not used variable 'direct_poll' in vcn_v2_5.c
  2020-04-30  2:26 ` Zheng Bin
@ 2020-04-30  2:26   ` Zheng Bin
  -1 siblings, 0 replies; 12+ messages in thread
From: Zheng Bin @ 2020-04-30  2:26 UTC (permalink / raw)
  To: alexander.deucher, christian.koenig, David1.Zhou, airlied,
	daniel, amd-gfx, dri-devel
  Cc: zhengbin13

Fixes gcc '-Wunused-but-set-variable' warning:

drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c:1170:39: warning: variable ‘direct_poll’ set but not used [-Wunused-but-set-variable]

It is introduced by commit 7daaebfea5e5 ("drm/amdgpu:
add VCN2.5 sriov start for Arctrus"), but never used,
so remove it.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zheng Bin <zhengbin13@huawei.com>
---
 drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c b/drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c
index 38ca4a712f12..5c1b9ed76534 100644
--- a/drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c
+++ b/drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c
@@ -1167,14 +1167,12 @@ static int vcn_v2_5_sriov_start(struct amdgpu_device *adev)
 	uint32_t table_size = 0;
 	struct mmsch_v1_0_cmd_direct_write direct_wt = { { 0 } };
 	struct mmsch_v1_0_cmd_direct_read_modify_write direct_rd_mod_wt = { { 0 } };
-	struct mmsch_v1_0_cmd_direct_polling direct_poll = { { 0 } };
 	struct mmsch_v1_0_cmd_end end = { { 0 } };
 	uint32_t *init_table = adev->virt.mm_table.cpu_addr;
 	struct mmsch_v1_1_init_header *header = (struct mmsch_v1_1_init_header *)init_table;

 	direct_wt.cmd_header.command_type = MMSCH_COMMAND__DIRECT_REG_WRITE;
 	direct_rd_mod_wt.cmd_header.command_type = MMSCH_COMMAND__DIRECT_REG_READ_MODIFY_WRITE;
-	direct_poll.cmd_header.command_type = MMSCH_COMMAND__DIRECT_REG_POLLING;
 	end.cmd_header.command_type = MMSCH_COMMAND__END;

 	header->version = MMSCH_VERSION;
--
2.26.0.106.g9fadedd

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* [PATCH 3/3] drm/amdgpu: remove set but not used variable 'direct_poll' in vcn_v2_5.c
@ 2020-04-30  2:26   ` Zheng Bin
  0 siblings, 0 replies; 12+ messages in thread
From: Zheng Bin @ 2020-04-30  2:26 UTC (permalink / raw)
  To: alexander.deucher, christian.koenig, David1.Zhou, airlied,
	daniel, amd-gfx, dri-devel
  Cc: zhengbin13

Fixes gcc '-Wunused-but-set-variable' warning:

drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c:1170:39: warning: variable ‘direct_poll’ set but not used [-Wunused-but-set-variable]

It is introduced by commit 7daaebfea5e5 ("drm/amdgpu:
add VCN2.5 sriov start for Arctrus"), but never used,
so remove it.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zheng Bin <zhengbin13@huawei.com>
---
 drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c b/drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c
index 38ca4a712f12..5c1b9ed76534 100644
--- a/drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c
+++ b/drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c
@@ -1167,14 +1167,12 @@ static int vcn_v2_5_sriov_start(struct amdgpu_device *adev)
 	uint32_t table_size = 0;
 	struct mmsch_v1_0_cmd_direct_write direct_wt = { { 0 } };
 	struct mmsch_v1_0_cmd_direct_read_modify_write direct_rd_mod_wt = { { 0 } };
-	struct mmsch_v1_0_cmd_direct_polling direct_poll = { { 0 } };
 	struct mmsch_v1_0_cmd_end end = { { 0 } };
 	uint32_t *init_table = adev->virt.mm_table.cpu_addr;
 	struct mmsch_v1_1_init_header *header = (struct mmsch_v1_1_init_header *)init_table;

 	direct_wt.cmd_header.command_type = MMSCH_COMMAND__DIRECT_REG_WRITE;
 	direct_rd_mod_wt.cmd_header.command_type = MMSCH_COMMAND__DIRECT_REG_READ_MODIFY_WRITE;
-	direct_poll.cmd_header.command_type = MMSCH_COMMAND__DIRECT_REG_POLLING;
 	end.cmd_header.command_type = MMSCH_COMMAND__END;

 	header->version = MMSCH_VERSION;
--
2.26.0.106.g9fadedd

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

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

* Re: [PATCH 0/3] drm/amdgpu: remove set but not used variables
  2020-04-30  2:26 ` Zheng Bin
@ 2020-04-30 13:07   ` Christian König
  -1 siblings, 0 replies; 12+ messages in thread
From: Christian König @ 2020-04-30 13:07 UTC (permalink / raw)
  To: Zheng Bin, alexander.deucher, christian.koenig, David1.Zhou,
	airlied, daniel, amd-gfx, dri-devel

Reviewed-by: Christian König <christian.koenig@amd.com> for the series.

Am 30.04.20 um 04:26 schrieb Zheng Bin:
> Zheng Bin (3):
>    drm/amdgpu: remove set but not used variable 'priority'
>    drm/amdgpu: remove set but not used variable 'direct_poll' in
>      vcn_v2_0.c
>    drm/amdgpu: remove set but not used variable 'direct_poll' in
>      vcn_v2_5.c
>
>   drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | 2 --
>   drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c  | 3 ---
>   drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c  | 2 --
>   3 files changed, 7 deletions(-)
>
> --
> 2.26.0.106.g9fadedd
>
> _______________________________________________
> amd-gfx mailing list
> amd-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH 0/3] drm/amdgpu: remove set but not used variables
@ 2020-04-30 13:07   ` Christian König
  0 siblings, 0 replies; 12+ messages in thread
From: Christian König @ 2020-04-30 13:07 UTC (permalink / raw)
  To: Zheng Bin, alexander.deucher, christian.koenig, David1.Zhou,
	airlied, daniel, amd-gfx, dri-devel

Reviewed-by: Christian König <christian.koenig@amd.com> for the series.

Am 30.04.20 um 04:26 schrieb Zheng Bin:
> Zheng Bin (3):
>    drm/amdgpu: remove set but not used variable 'priority'
>    drm/amdgpu: remove set but not used variable 'direct_poll' in
>      vcn_v2_0.c
>    drm/amdgpu: remove set but not used variable 'direct_poll' in
>      vcn_v2_5.c
>
>   drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | 2 --
>   drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c  | 3 ---
>   drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c  | 2 --
>   3 files changed, 7 deletions(-)
>
> --
> 2.26.0.106.g9fadedd
>
> _______________________________________________
> amd-gfx mailing list
> amd-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

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

* Re: [PATCH 0/3] drm/amdgpu: remove set but not used variables
  2020-04-30 13:07   ` Christian König
@ 2020-04-30 16:20     ` Alex Deucher
  -1 siblings, 0 replies; 12+ messages in thread
From: Alex Deucher @ 2020-04-30 16:20 UTC (permalink / raw)
  To: Christian Koenig
  Cc: Dave Airlie, amd-gfx list, Zheng Bin,
	Maling list - DRI developers, Deucher, Alexander

Applied.  Thanks!

Alex

On Thu, Apr 30, 2020 at 9:07 AM Christian König
<ckoenig.leichtzumerken@gmail.com> wrote:
>
> Reviewed-by: Christian König <christian.koenig@amd.com> for the series.
>
> Am 30.04.20 um 04:26 schrieb Zheng Bin:
> > Zheng Bin (3):
> >    drm/amdgpu: remove set but not used variable 'priority'
> >    drm/amdgpu: remove set but not used variable 'direct_poll' in
> >      vcn_v2_0.c
> >    drm/amdgpu: remove set but not used variable 'direct_poll' in
> >      vcn_v2_5.c
> >
> >   drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | 2 --
> >   drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c  | 3 ---
> >   drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c  | 2 --
> >   3 files changed, 7 deletions(-)
> >
> > --
> > 2.26.0.106.g9fadedd
> >
> > _______________________________________________
> > amd-gfx mailing list
> > amd-gfx@lists.freedesktop.org
> > https://lists.freedesktop.org/mailman/listinfo/amd-gfx
>
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH 0/3] drm/amdgpu: remove set but not used variables
@ 2020-04-30 16:20     ` Alex Deucher
  0 siblings, 0 replies; 12+ messages in thread
From: Alex Deucher @ 2020-04-30 16:20 UTC (permalink / raw)
  To: Christian Koenig
  Cc: Chunming Zhou, Dave Airlie, amd-gfx list, Zheng Bin,
	Maling list - DRI developers, Daniel Vetter, Deucher, Alexander

Applied.  Thanks!

Alex

On Thu, Apr 30, 2020 at 9:07 AM Christian König
<ckoenig.leichtzumerken@gmail.com> wrote:
>
> Reviewed-by: Christian König <christian.koenig@amd.com> for the series.
>
> Am 30.04.20 um 04:26 schrieb Zheng Bin:
> > Zheng Bin (3):
> >    drm/amdgpu: remove set but not used variable 'priority'
> >    drm/amdgpu: remove set but not used variable 'direct_poll' in
> >      vcn_v2_0.c
> >    drm/amdgpu: remove set but not used variable 'direct_poll' in
> >      vcn_v2_5.c
> >
> >   drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | 2 --
> >   drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c  | 3 ---
> >   drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c  | 2 --
> >   3 files changed, 7 deletions(-)
> >
> > --
> > 2.26.0.106.g9fadedd
> >
> > _______________________________________________
> > amd-gfx mailing list
> > amd-gfx@lists.freedesktop.org
> > https://lists.freedesktop.org/mailman/listinfo/amd-gfx
>
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

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

end of thread, other threads:[~2020-04-30 16:20 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-30  2:26 [PATCH 0/3] drm/amdgpu: remove set but not used variables Zheng Bin
2020-04-30  2:26 ` Zheng Bin
2020-04-30  2:26 ` [PATCH 1/3] drm/amdgpu: remove set but not used variable 'priority' Zheng Bin
2020-04-30  2:26   ` Zheng Bin
2020-04-30  2:26 ` [PATCH 2/3] drm/amdgpu: remove set but not used variable 'direct_poll' in vcn_v2_0.c Zheng Bin
2020-04-30  2:26   ` Zheng Bin
2020-04-30  2:26 ` [PATCH 3/3] drm/amdgpu: remove set but not used variable 'direct_poll' in vcn_v2_5.c Zheng Bin
2020-04-30  2:26   ` Zheng Bin
2020-04-30 13:07 ` [PATCH 0/3] drm/amdgpu: remove set but not used variables Christian König
2020-04-30 13:07   ` Christian König
2020-04-30 16:20   ` Alex Deucher
2020-04-30 16:20     ` Alex Deucher

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.