All of lore.kernel.org
 help / color / mirror / Atom feed
From: Gaosheng Cui <cuigaosheng1@huawei.com>
To: <evan.quan@amd.com>, <alexander.deucher@amd.com>,
	<christian.koenig@amd.com>, <Xinhui.Pan@amd.com>,
	<airlied@linux.ie>, <daniel@ffwll.ch>,
	<patrik.r.jakobsson@gmail.com>, <jani.nikula@linux.intel.com>,
	<joonas.lahtinen@linux.intel.com>, <rodrigo.vivi@intel.com>,
	<tvrtko.ursulin@linux.intel.com>, <zackr@vmware.com>,
	<linux-graphics-maintainer@vmware.com>, <lijo.lazar@amd.com>,
	<matthew.brost@intel.com>, <John.C.Harrison@Intel.com>,
	 <daniele.ceraolospurio@intel.com>, <cuigaosheng1@huawei.com>
Cc: intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org,
	amd-gfx@lists.freedesktop.org
Subject: [PATCH 1/6] drm/vmwgfx: remove unused vmw_bo_is_vmw_bo() declaration
Date: Tue, 13 Sep 2022 10:48:42 +0800	[thread overview]
Message-ID: <20220913024847.552254-2-cuigaosheng1@huawei.com> (raw)
In-Reply-To: <20220913024847.552254-1-cuigaosheng1@huawei.com>

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


WARNING: multiple messages have this Message-ID (diff)
From: Gaosheng Cui <cuigaosheng1@huawei.com>
To: <evan.quan@amd.com>, <alexander.deucher@amd.com>,
	<christian.koenig@amd.com>, <Xinhui.Pan@amd.com>,
	<airlied@linux.ie>, <daniel@ffwll.ch>,
	<patrik.r.jakobsson@gmail.com>, <jani.nikula@linux.intel.com>,
	<joonas.lahtinen@linux.intel.com>, <rodrigo.vivi@intel.com>,
	<tvrtko.ursulin@linux.intel.com>, <zackr@vmware.com>,
	<linux-graphics-maintainer@vmware.com>, <lijo.lazar@amd.com>,
	<matthew.brost@intel.com>, <John.C.Harrison@Intel.com>,
	 <daniele.ceraolospurio@intel.com>, <cuigaosheng1@huawei.com>
Cc: intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org,
	amd-gfx@lists.freedesktop.org
Subject: [Intel-gfx] [PATCH 1/6] drm/vmwgfx: remove unused vmw_bo_is_vmw_bo() declaration
Date: Tue, 13 Sep 2022 10:48:42 +0800	[thread overview]
Message-ID: <20220913024847.552254-2-cuigaosheng1@huawei.com> (raw)
In-Reply-To: <20220913024847.552254-1-cuigaosheng1@huawei.com>

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


  reply	other threads:[~2022-09-13  5:28 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-13  2:48 [PATCH 0/6] Remove unused declarations for gpu/drm Gaosheng Cui
2022-09-13  2:48 ` [Intel-gfx] " Gaosheng Cui
2022-09-13  2:48 ` Gaosheng Cui [this message]
2022-09-13  2:48   ` [Intel-gfx] [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   ` [Intel-gfx] " Gaosheng Cui
2022-09-13  2:48 ` [PATCH 3/6] drm/radeon: remove unused declarations for radeon Gaosheng Cui
2022-09-13  2:48   ` [Intel-gfx] " 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   ` [Intel-gfx] " 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   ` [Intel-gfx] " 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  2:48   ` [Intel-gfx] " Gaosheng Cui
2022-09-13 18:28   ` Jani Nikula
2022-09-13 18:28     ` [Intel-gfx] " Jani Nikula
2022-09-13  6:14 ` [PATCH 0/6] Remove unused declarations for gpu/drm Christian König
2022-09-13  6:14   ` [Intel-gfx] " Christian König
2022-09-13 19:00   ` Alex Deucher
2022-09-13 19:00     ` Alex Deucher
2022-09-13 19:00     ` [Intel-gfx] " Alex Deucher
2022-09-19 22:05 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for " Patchwork
2022-09-19 22:29 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2022-09-20  5:47 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220913024847.552254-2-cuigaosheng1@huawei.com \
    --to=cuigaosheng1@huawei.com \
    --cc=John.C.Harrison@Intel.com \
    --cc=Xinhui.Pan@amd.com \
    --cc=airlied@linux.ie \
    --cc=alexander.deucher@amd.com \
    --cc=amd-gfx@lists.freedesktop.org \
    --cc=christian.koenig@amd.com \
    --cc=daniel@ffwll.ch \
    --cc=daniele.ceraolospurio@intel.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=evan.quan@amd.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=jani.nikula@linux.intel.com \
    --cc=joonas.lahtinen@linux.intel.com \
    --cc=lijo.lazar@amd.com \
    --cc=linux-graphics-maintainer@vmware.com \
    --cc=matthew.brost@intel.com \
    --cc=patrik.r.jakobsson@gmail.com \
    --cc=rodrigo.vivi@intel.com \
    --cc=tvrtko.ursulin@linux.intel.com \
    --cc=zackr@vmware.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.