dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/6] Remove unused declarations for gpu/drm
@ 2022-09-13  2:48 Gaosheng Cui
  2022-09-13  2:48 ` [PATCH 1/6] drm/vmwgfx: remove unused vmw_bo_is_vmw_bo() declaration Gaosheng Cui
                   ` (6 more replies)
  0 siblings, 7 replies; 10+ messages in thread
From: Gaosheng Cui @ 2022-09-13  2:48 UTC (permalink / raw)
  To: evan.quan, alexander.deucher, christian.koenig, Xinhui.Pan,
	airlied, daniel, patrik.r.jakobsson, jani.nikula,
	joonas.lahtinen, rodrigo.vivi, tvrtko.ursulin, zackr,
	linux-graphics-maintainer, lijo.lazar, matthew.brost,
	John.C.Harrison, daniele.ceraolospurio, cuigaosheng1
  Cc: intel-gfx, dri-devel, amd-gfx

This series contains a few cleanup patches, to remove unused
declarations which have been removed. Thanks!

Gaosheng Cui (6):
  drm/vmwgfx: remove unused vmw_bo_is_vmw_bo() declaration
  drm/radeon/r600_cs: remove r600_cs_legacy_get_tiling_conf()
    declaration
  drm/radeon: remove unused declarations for radeon
  drm/gma500: remove unused declarations in psb_intel_drv.h
  drm/amd/pm: remove unused declarations in hardwaremanager.h
  drm/i915: remove unused i915_gem_lmem_obj_ops declaration

 drivers/gpu/drm/amd/pm/powerplay/inc/hardwaremanager.h | 2 --
 drivers/gpu/drm/gma500/psb_intel_drv.h                 | 5 -----
 drivers/gpu/drm/i915/gem/i915_gem_lmem.h               | 2 --
 drivers/gpu/drm/radeon/r600_cs.c                       | 2 --
 drivers/gpu/drm/radeon/radeon.h                        | 3 ---
 drivers/gpu/drm/radeon/radeon_mode.h                   | 1 -
 drivers/gpu/drm/vmwgfx/vmwgfx_drv.h                    | 1 -
 7 files changed, 16 deletions(-)

-- 
2.25.1


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

* [PATCH 1/6] drm/vmwgfx: remove unused vmw_bo_is_vmw_bo() declaration
  2022-09-13  2:48 [PATCH 0/6] Remove unused declarations for gpu/drm Gaosheng Cui
@ 2022-09-13  2:48 ` Gaosheng Cui
  2022-09-13  2:48 ` [PATCH 2/6] drm/radeon/r600_cs: remove r600_cs_legacy_get_tiling_conf() declaration Gaosheng Cui
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Gaosheng Cui @ 2022-09-13  2:48 UTC (permalink / raw)
  To: evan.quan, alexander.deucher, christian.koenig, Xinhui.Pan,
	airlied, daniel, patrik.r.jakobsson, jani.nikula,
	joonas.lahtinen, rodrigo.vivi, tvrtko.ursulin, zackr,
	linux-graphics-maintainer, lijo.lazar, matthew.brost,
	John.C.Harrison, daniele.ceraolospurio, cuigaosheng1
  Cc: intel-gfx, dri-devel, amd-gfx

vmw_bo_is_vmw_bo() has been removed since
commit 298799a28264 ("drm/vmwgfx: Fix gem refcounting and
memory evictions"), so remove it.

Signed-off-by: Gaosheng Cui <cuigaosheng1@huawei.com>
---
 drivers/gpu/drm/vmwgfx/vmwgfx_drv.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h
index be19aa6e1f13..09e2d738aa87 100644
--- a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h
+++ b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h
@@ -877,7 +877,6 @@ static inline void vmw_user_resource_noref_release(void)
 /**
  * Buffer object helper functions - vmwgfx_bo.c
  */
-extern bool vmw_bo_is_vmw_bo(struct ttm_buffer_object *bo);
 extern int vmw_bo_pin_in_placement(struct vmw_private *vmw_priv,
 				   struct vmw_buffer_object *bo,
 				   struct ttm_placement *placement,
-- 
2.25.1


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

* [PATCH 2/6] drm/radeon/r600_cs: remove r600_cs_legacy_get_tiling_conf() declaration
  2022-09-13  2:48 [PATCH 0/6] Remove unused declarations for gpu/drm Gaosheng Cui
  2022-09-13  2:48 ` [PATCH 1/6] drm/vmwgfx: remove unused vmw_bo_is_vmw_bo() declaration Gaosheng Cui
@ 2022-09-13  2:48 ` Gaosheng Cui
  2022-09-13  2:48 ` [PATCH 3/6] drm/radeon: remove unused declarations for radeon Gaosheng Cui
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Gaosheng Cui @ 2022-09-13  2:48 UTC (permalink / raw)
  To: evan.quan, alexander.deucher, christian.koenig, Xinhui.Pan,
	airlied, daniel, patrik.r.jakobsson, jani.nikula,
	joonas.lahtinen, rodrigo.vivi, tvrtko.ursulin, zackr,
	linux-graphics-maintainer, lijo.lazar, matthew.brost,
	John.C.Harrison, daniele.ceraolospurio, cuigaosheng1
  Cc: intel-gfx, dri-devel, amd-gfx

r600_cs_legacy_get_tiling_conf() has been removed since
commit 8333f607a631 ("drm/radeon: remove UMS support"),
so remove it.

Signed-off-by: Gaosheng Cui <cuigaosheng1@huawei.com>
---
 drivers/gpu/drm/radeon/r600_cs.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/gpu/drm/radeon/r600_cs.c b/drivers/gpu/drm/radeon/r600_cs.c
index 8be4799a98ef..638f861af80f 100644
--- a/drivers/gpu/drm/radeon/r600_cs.c
+++ b/drivers/gpu/drm/radeon/r600_cs.c
@@ -34,8 +34,6 @@
 #include "r600_reg_safe.h"
 
 static int r600_nomm;
-extern void r600_cs_legacy_get_tiling_conf(struct drm_device *dev, u32 *npipes, u32 *nbanks, u32 *group_size);
-
 
 struct r600_cs_track {
 	/* configuration we mirror so that we use same code btw kms/ums */
-- 
2.25.1


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

* [PATCH 3/6] drm/radeon: remove unused declarations for radeon
  2022-09-13  2:48 [PATCH 0/6] Remove unused declarations for gpu/drm Gaosheng Cui
  2022-09-13  2:48 ` [PATCH 1/6] drm/vmwgfx: remove unused vmw_bo_is_vmw_bo() declaration Gaosheng Cui
  2022-09-13  2:48 ` [PATCH 2/6] drm/radeon/r600_cs: remove r600_cs_legacy_get_tiling_conf() declaration Gaosheng Cui
@ 2022-09-13  2:48 ` Gaosheng Cui
  2022-09-13  2:48 ` [PATCH 4/6] drm/gma500: remove unused declarations in psb_intel_drv.h Gaosheng Cui
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Gaosheng Cui @ 2022-09-13  2:48 UTC (permalink / raw)
  To: evan.quan, alexander.deucher, christian.koenig, Xinhui.Pan,
	airlied, daniel, patrik.r.jakobsson, jani.nikula,
	joonas.lahtinen, rodrigo.vivi, tvrtko.ursulin, zackr,
	linux-graphics-maintainer, lijo.lazar, matthew.brost,
	John.C.Harrison, daniele.ceraolospurio, cuigaosheng1
  Cc: intel-gfx, dri-devel, amd-gfx

radeon_combios_get_ext_tmds_info() has been removed since
commit fcec570b27a4 ("drm/radeon/kms: add support for
external tmds on legacy boards").

radeon_mst has been removed since
commit 01ad1d9c2888 ("drm/radeon: Drop legacy MST support").

r600_hdmi_acr() has been removed since
commit 64424d6e45ae ("radeon/audio: consolidate update_acr()
functions (v2)").

So remove the declarations for them from header file.

Signed-off-by: Gaosheng Cui <cuigaosheng1@huawei.com>
---
 drivers/gpu/drm/radeon/radeon.h      | 3 ---
 drivers/gpu/drm/radeon/radeon_mode.h | 1 -
 2 files changed, 4 deletions(-)

diff --git a/drivers/gpu/drm/radeon/radeon.h b/drivers/gpu/drm/radeon/radeon.h
index 08f83bf2c330..166c18d62f6d 100644
--- a/drivers/gpu/drm/radeon/radeon.h
+++ b/drivers/gpu/drm/radeon/radeon.h
@@ -116,7 +116,6 @@ extern int radeon_use_pflipirq;
 extern int radeon_bapm;
 extern int radeon_backlight;
 extern int radeon_auxch;
-extern int radeon_mst;
 extern int radeon_uvd;
 extern int radeon_vce;
 extern int radeon_si_support;
@@ -2950,8 +2949,6 @@ struct radeon_hdmi_acr {
 
 };
 
-extern struct radeon_hdmi_acr r600_hdmi_acr(uint32_t clock);
-
 extern u32 r6xx_remap_render_backend(struct radeon_device *rdev,
 				     u32 tiling_pipe_num,
 				     u32 max_rb_num,
diff --git a/drivers/gpu/drm/radeon/radeon_mode.h b/drivers/gpu/drm/radeon/radeon_mode.h
index 6a6a73204226..9f5be416454f 100644
--- a/drivers/gpu/drm/radeon/radeon_mode.h
+++ b/drivers/gpu/drm/radeon/radeon_mode.h
@@ -874,7 +874,6 @@ extern struct radeon_encoder_tv_dac *
 radeon_atombios_get_tv_dac_info(struct radeon_encoder *encoder);
 extern struct radeon_encoder_lvds *
 radeon_combios_get_lvds_info(struct radeon_encoder *encoder);
-extern void radeon_combios_get_ext_tmds_info(struct radeon_encoder *encoder);
 extern struct radeon_encoder_tv_dac *
 radeon_combios_get_tv_dac_info(struct radeon_encoder *encoder);
 extern struct radeon_encoder_primary_dac *
-- 
2.25.1


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

* [PATCH 4/6] drm/gma500: remove unused declarations in psb_intel_drv.h
  2022-09-13  2:48 [PATCH 0/6] Remove unused declarations for gpu/drm Gaosheng Cui
                   ` (2 preceding siblings ...)
  2022-09-13  2:48 ` [PATCH 3/6] drm/radeon: remove unused declarations for radeon Gaosheng Cui
@ 2022-09-13  2:48 ` Gaosheng Cui
  2022-09-13  2:48 ` [PATCH 5/6] drm/amd/pm: remove unused declarations in hardwaremanager.h Gaosheng Cui
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Gaosheng Cui @ 2022-09-13  2:48 UTC (permalink / raw)
  To: evan.quan, alexander.deucher, christian.koenig, Xinhui.Pan,
	airlied, daniel, patrik.r.jakobsson, jani.nikula,
	joonas.lahtinen, rodrigo.vivi, tvrtko.ursulin, zackr,
	linux-graphics-maintainer, lijo.lazar, matthew.brost,
	John.C.Harrison, daniele.ceraolospurio, cuigaosheng1
  Cc: intel-gfx, dri-devel, amd-gfx

psb_intel_sdvo_supports_hotplug(), psb_intel_sdvo_set_hotplug()
and psb_intel_sdvo_find() have been removed since
commit 871c60156dbe ("drm/gma500: Remove dead code"),
so remove them.

Signed-off-by: Gaosheng Cui <cuigaosheng1@huawei.com>
---
 drivers/gpu/drm/gma500/psb_intel_drv.h | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/drivers/gpu/drm/gma500/psb_intel_drv.h b/drivers/gpu/drm/gma500/psb_intel_drv.h
index 8ccba116821b..8a1111fe714b 100644
--- a/drivers/gpu/drm/gma500/psb_intel_drv.h
+++ b/drivers/gpu/drm/gma500/psb_intel_drv.h
@@ -197,8 +197,6 @@ extern void psb_intel_lvds_set_brightness(struct drm_device *dev, int level);
 extern void oaktrail_lvds_init(struct drm_device *dev,
 			   struct psb_intel_mode_device *mode_dev);
 extern void oaktrail_wait_for_INTR_PKT_SENT(struct drm_device *dev);
-extern void oaktrail_dsi_init(struct drm_device *dev,
-			   struct psb_intel_mode_device *mode_dev);
 struct gma_i2c_chan *oaktrail_lvds_i2c_init(struct drm_device *dev);
 extern void mid_dsi_init(struct drm_device *dev,
 		    struct psb_intel_mode_device *mode_dev, int dsi_num);
@@ -219,9 +217,6 @@ extern struct drm_crtc *psb_intel_get_crtc_from_pipe(struct drm_device *dev,
 						 int pipe);
 extern struct drm_connector *psb_intel_sdvo_find(struct drm_device *dev,
 					     int sdvoB);
-extern int psb_intel_sdvo_supports_hotplug(struct drm_connector *connector);
-extern void psb_intel_sdvo_set_hotplug(struct drm_connector *connector,
-				   int enable);
 extern int intelfb_probe(struct drm_device *dev);
 extern int intelfb_remove(struct drm_device *dev,
 			  struct drm_framebuffer *fb);
-- 
2.25.1


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

* [PATCH 5/6] drm/amd/pm: remove unused declarations in hardwaremanager.h
  2022-09-13  2:48 [PATCH 0/6] Remove unused declarations for gpu/drm Gaosheng Cui
                   ` (3 preceding siblings ...)
  2022-09-13  2:48 ` [PATCH 4/6] drm/gma500: remove unused declarations in psb_intel_drv.h Gaosheng Cui
@ 2022-09-13  2:48 ` Gaosheng Cui
  2022-09-13  2:48 ` [PATCH 6/6] drm/i915: remove unused i915_gem_lmem_obj_ops declaration Gaosheng Cui
  2022-09-13  6:14 ` [PATCH 0/6] Remove unused declarations for gpu/drm Christian König
  6 siblings, 0 replies; 10+ messages in thread
From: Gaosheng Cui @ 2022-09-13  2:48 UTC (permalink / raw)
  To: evan.quan, alexander.deucher, christian.koenig, Xinhui.Pan,
	airlied, daniel, patrik.r.jakobsson, jani.nikula,
	joonas.lahtinen, rodrigo.vivi, tvrtko.ursulin, zackr,
	linux-graphics-maintainer, lijo.lazar, matthew.brost,
	John.C.Harrison, daniele.ceraolospurio, cuigaosheng1
  Cc: intel-gfx, dri-devel, amd-gfx

phm_is_hw_access_blocked() and phm_block_hw_access() has been
removed since commit 698f88e697cc ("drm/amd/powerplay: delete
dead code in powerplay"), so remove them.

Signed-off-by: Gaosheng Cui <cuigaosheng1@huawei.com>
---
 drivers/gpu/drm/amd/pm/powerplay/inc/hardwaremanager.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/gpu/drm/amd/pm/powerplay/inc/hardwaremanager.h b/drivers/gpu/drm/amd/pm/powerplay/inc/hardwaremanager.h
index 6e0be6027705..01a7d66864f2 100644
--- a/drivers/gpu/drm/amd/pm/powerplay/inc/hardwaremanager.h
+++ b/drivers/gpu/drm/amd/pm/powerplay/inc/hardwaremanager.h
@@ -401,8 +401,6 @@ extern int phm_powerdown_uvd(struct pp_hwmgr *hwmgr);
 extern int phm_setup_asic(struct pp_hwmgr *hwmgr);
 extern int phm_enable_dynamic_state_management(struct pp_hwmgr *hwmgr);
 extern int phm_disable_dynamic_state_management(struct pp_hwmgr *hwmgr);
-extern bool phm_is_hw_access_blocked(struct pp_hwmgr *hwmgr);
-extern int phm_block_hw_access(struct pp_hwmgr *hwmgr, bool block);
 extern int phm_set_power_state(struct pp_hwmgr *hwmgr,
 		    const struct pp_hw_power_state *pcurrent_state,
 		 const struct pp_hw_power_state *pnew_power_state);
-- 
2.25.1


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

* [PATCH 6/6] drm/i915: remove unused i915_gem_lmem_obj_ops declaration
  2022-09-13  2:48 [PATCH 0/6] Remove unused declarations for gpu/drm Gaosheng Cui
                   ` (4 preceding siblings ...)
  2022-09-13  2:48 ` [PATCH 5/6] drm/amd/pm: remove unused declarations in hardwaremanager.h Gaosheng Cui
@ 2022-09-13  2:48 ` Gaosheng Cui
  2022-09-13 18:28   ` Jani Nikula
  2022-09-13  6:14 ` [PATCH 0/6] Remove unused declarations for gpu/drm Christian König
  6 siblings, 1 reply; 10+ messages in thread
From: Gaosheng Cui @ 2022-09-13  2:48 UTC (permalink / raw)
  To: evan.quan, alexander.deucher, christian.koenig, Xinhui.Pan,
	airlied, daniel, patrik.r.jakobsson, jani.nikula,
	joonas.lahtinen, rodrigo.vivi, tvrtko.ursulin, zackr,
	linux-graphics-maintainer, lijo.lazar, matthew.brost,
	John.C.Harrison, daniele.ceraolospurio, cuigaosheng1
  Cc: intel-gfx, dri-devel, amd-gfx

i915_gem_lmem_obj_ops has been removed since
commit 213d50927763 ("drm/i915/ttm: Introduce a TTM i915
gem object backend"), so remove it.

Signed-off-by: Gaosheng Cui <cuigaosheng1@huawei.com>
---
 drivers/gpu/drm/i915/gem/i915_gem_lmem.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/gem/i915_gem_lmem.h b/drivers/gpu/drm/i915/gem/i915_gem_lmem.h
index 1b88ea13435c..5a7a14e85c3f 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_lmem.h
+++ b/drivers/gpu/drm/i915/gem/i915_gem_lmem.h
@@ -12,8 +12,6 @@ struct drm_i915_private;
 struct drm_i915_gem_object;
 struct intel_memory_region;
 
-extern const struct drm_i915_gem_object_ops i915_gem_lmem_obj_ops;
-
 void __iomem *
 i915_gem_object_lmem_io_map(struct drm_i915_gem_object *obj,
 			    unsigned long n,
-- 
2.25.1


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

* Re: [PATCH 0/6] Remove unused declarations for gpu/drm
  2022-09-13  2:48 [PATCH 0/6] Remove unused declarations for gpu/drm Gaosheng Cui
                   ` (5 preceding siblings ...)
  2022-09-13  2:48 ` [PATCH 6/6] drm/i915: remove unused i915_gem_lmem_obj_ops declaration Gaosheng Cui
@ 2022-09-13  6:14 ` Christian König
  2022-09-13 19:00   ` Alex Deucher
  6 siblings, 1 reply; 10+ messages in thread
From: Christian König @ 2022-09-13  6:14 UTC (permalink / raw)
  To: Gaosheng Cui, evan.quan, alexander.deucher, Xinhui.Pan, airlied,
	daniel, patrik.r.jakobsson, jani.nikula, joonas.lahtinen,
	rodrigo.vivi, tvrtko.ursulin, zackr, linux-graphics-maintainer,
	lijo.lazar, matthew.brost, John.C.Harrison,
	daniele.ceraolospurio
  Cc: intel-gfx, dri-devel, amd-gfx

Nice cleanup. Acked-by: Christian König <christian.koenig@amd.com> for 
the whole series.

Thanks,
Christian.

Am 13.09.22 um 04:48 schrieb Gaosheng Cui:
> This series contains a few cleanup patches, to remove unused
> declarations which have been removed. Thanks!
>
> Gaosheng Cui (6):
>    drm/vmwgfx: remove unused vmw_bo_is_vmw_bo() declaration
>    drm/radeon/r600_cs: remove r600_cs_legacy_get_tiling_conf()
>      declaration
>    drm/radeon: remove unused declarations for radeon
>    drm/gma500: remove unused declarations in psb_intel_drv.h
>    drm/amd/pm: remove unused declarations in hardwaremanager.h
>    drm/i915: remove unused i915_gem_lmem_obj_ops declaration
>
>   drivers/gpu/drm/amd/pm/powerplay/inc/hardwaremanager.h | 2 --
>   drivers/gpu/drm/gma500/psb_intel_drv.h                 | 5 -----
>   drivers/gpu/drm/i915/gem/i915_gem_lmem.h               | 2 --
>   drivers/gpu/drm/radeon/r600_cs.c                       | 2 --
>   drivers/gpu/drm/radeon/radeon.h                        | 3 ---
>   drivers/gpu/drm/radeon/radeon_mode.h                   | 1 -
>   drivers/gpu/drm/vmwgfx/vmwgfx_drv.h                    | 1 -
>   7 files changed, 16 deletions(-)
>


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

* Re: [PATCH 6/6] drm/i915: remove unused i915_gem_lmem_obj_ops declaration
  2022-09-13  2:48 ` [PATCH 6/6] drm/i915: remove unused i915_gem_lmem_obj_ops declaration Gaosheng Cui
@ 2022-09-13 18:28   ` Jani Nikula
  0 siblings, 0 replies; 10+ messages in thread
From: Jani Nikula @ 2022-09-13 18:28 UTC (permalink / raw)
  To: Gaosheng Cui, evan.quan, alexander.deucher, christian.koenig,
	Xinhui.Pan, airlied, daniel, patrik.r.jakobsson, joonas.lahtinen,
	rodrigo.vivi, tvrtko.ursulin, zackr, linux-graphics-maintainer,
	lijo.lazar, matthew.brost, John.C.Harrison,
	daniele.ceraolospurio, cuigaosheng1
  Cc: intel-gfx, dri-devel, amd-gfx

On Tue, 13 Sep 2022, Gaosheng Cui <cuigaosheng1@huawei.com> wrote:
> i915_gem_lmem_obj_ops has been removed since
> commit 213d50927763 ("drm/i915/ttm: Introduce a TTM i915
> gem object backend"), so remove it.

Thanks, pushed this one patch to drm-intel-gt-next.

BR,
Jani.

>
> Signed-off-by: Gaosheng Cui <cuigaosheng1@huawei.com>
> ---
>  drivers/gpu/drm/i915/gem/i915_gem_lmem.h | 2 --
>  1 file changed, 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_lmem.h b/drivers/gpu/drm/i915/gem/i915_gem_lmem.h
> index 1b88ea13435c..5a7a14e85c3f 100644
> --- a/drivers/gpu/drm/i915/gem/i915_gem_lmem.h
> +++ b/drivers/gpu/drm/i915/gem/i915_gem_lmem.h
> @@ -12,8 +12,6 @@ struct drm_i915_private;
>  struct drm_i915_gem_object;
>  struct intel_memory_region;
>  
> -extern const struct drm_i915_gem_object_ops i915_gem_lmem_obj_ops;
> -
>  void __iomem *
>  i915_gem_object_lmem_io_map(struct drm_i915_gem_object *obj,
>  			    unsigned long n,

-- 
Jani Nikula, Intel Open Source Graphics Center

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

* Re: [PATCH 0/6] Remove unused declarations for gpu/drm
  2022-09-13  6:14 ` [PATCH 0/6] Remove unused declarations for gpu/drm Christian König
@ 2022-09-13 19:00   ` Alex Deucher
  0 siblings, 0 replies; 10+ messages in thread
From: Alex Deucher @ 2022-09-13 19:00 UTC (permalink / raw)
  To: Christian König
  Cc: matthew.brost, tvrtko.ursulin, dri-devel, airlied, intel-gfx,
	Xinhui.Pan, John.C.Harrison, lijo.lazar, daniele.ceraolospurio,
	linux-graphics-maintainer, rodrigo.vivi, alexander.deucher,
	evan.quan, amd-gfx, Gaosheng Cui

Pushed patches 1-5 to drm-misc-next.

Alex

On Tue, Sep 13, 2022 at 2:14 AM Christian König
<christian.koenig@amd.com> wrote:
>
> Nice cleanup. Acked-by: Christian König <christian.koenig@amd.com> for
> the whole series.
>
> Thanks,
> Christian.
>
> Am 13.09.22 um 04:48 schrieb Gaosheng Cui:
> > This series contains a few cleanup patches, to remove unused
> > declarations which have been removed. Thanks!
> >
> > Gaosheng Cui (6):
> >    drm/vmwgfx: remove unused vmw_bo_is_vmw_bo() declaration
> >    drm/radeon/r600_cs: remove r600_cs_legacy_get_tiling_conf()
> >      declaration
> >    drm/radeon: remove unused declarations for radeon
> >    drm/gma500: remove unused declarations in psb_intel_drv.h
> >    drm/amd/pm: remove unused declarations in hardwaremanager.h
> >    drm/i915: remove unused i915_gem_lmem_obj_ops declaration
> >
> >   drivers/gpu/drm/amd/pm/powerplay/inc/hardwaremanager.h | 2 --
> >   drivers/gpu/drm/gma500/psb_intel_drv.h                 | 5 -----
> >   drivers/gpu/drm/i915/gem/i915_gem_lmem.h               | 2 --
> >   drivers/gpu/drm/radeon/r600_cs.c                       | 2 --
> >   drivers/gpu/drm/radeon/radeon.h                        | 3 ---
> >   drivers/gpu/drm/radeon/radeon_mode.h                   | 1 -
> >   drivers/gpu/drm/vmwgfx/vmwgfx_drv.h                    | 1 -
> >   7 files changed, 16 deletions(-)
> >
>

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

end of thread, other threads:[~2022-09-13 19:00 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-13  2:48 [PATCH 0/6] Remove unused declarations for gpu/drm Gaosheng Cui
2022-09-13  2:48 ` [PATCH 1/6] drm/vmwgfx: remove unused vmw_bo_is_vmw_bo() declaration Gaosheng Cui
2022-09-13  2:48 ` [PATCH 2/6] drm/radeon/r600_cs: remove r600_cs_legacy_get_tiling_conf() declaration Gaosheng Cui
2022-09-13  2:48 ` [PATCH 3/6] drm/radeon: remove unused declarations for radeon Gaosheng Cui
2022-09-13  2:48 ` [PATCH 4/6] drm/gma500: remove unused declarations in psb_intel_drv.h Gaosheng Cui
2022-09-13  2:48 ` [PATCH 5/6] drm/amd/pm: remove unused declarations in hardwaremanager.h Gaosheng Cui
2022-09-13  2:48 ` [PATCH 6/6] drm/i915: remove unused i915_gem_lmem_obj_ops declaration Gaosheng Cui
2022-09-13 18:28   ` Jani Nikula
2022-09-13  6:14 ` [PATCH 0/6] Remove unused declarations for gpu/drm Christian König
2022-09-13 19:00   ` 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).