All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Christian König" <christian.koenig@amd.com>
To: Lee Jones <lee.jones@linaro.org>
Cc: linux-kernel@vger.kernel.org,
	Alex Deucher <alexander.deucher@amd.com>,
	David Airlie <airlied@linux.ie>, Daniel Vetter <daniel@ffwll.ch>,
	Sumit Semwal <sumit.semwal@linaro.org>,
	Jerome Glisse <glisse@freedesktop.org>,
	amd-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org,
	linux-media@vger.kernel.org, linaro-mm-sig@lists.linaro.org
Subject: Re: [PATCH 35/40] drm/amd/amdgpu/amdgpu_cs: Repair some function naming disparity
Date: Fri, 16 Apr 2021 17:54:35 +0200	[thread overview]
Message-ID: <59a21fb5-224e-882f-5d2f-e337e78eb7db@amd.com> (raw)
In-Reply-To: <20210416143725.2769053-36-lee.jones@linaro.org>

Am 16.04.21 um 16:37 schrieb Lee Jones:
> Fixes the following W=1 kernel build warning(s):
>
>   drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c:685: warning: expecting prototype for cs_parser_fini(). Prototype was for amdgpu_cs_parser_fini() instead
>   drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c:1502: warning: expecting prototype for amdgpu_cs_wait_all_fence(). Prototype was for amdgpu_cs_wait_all_fences() instead
>   drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c:1656: warning: expecting prototype for amdgpu_cs_find_bo_va(). Prototype was for amdgpu_cs_find_mapping() instead
>
> Cc: Alex Deucher <alexander.deucher@amd.com>
> Cc: "Christian König" <christian.koenig@amd.com>
> Cc: David Airlie <airlied@linux.ie>
> Cc: Daniel Vetter <daniel@ffwll.ch>
> Cc: Sumit Semwal <sumit.semwal@linaro.org>
> Cc: Jerome Glisse <glisse@freedesktop.org>
> Cc: amd-gfx@lists.freedesktop.org
> Cc: dri-devel@lists.freedesktop.org
> Cc: linux-media@vger.kernel.org
> Cc: linaro-mm-sig@lists.linaro.org
> Signed-off-by: Lee Jones <lee.jones@linaro.org>

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

> ---
>   drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
> index b5c7669980458..90136f9dedd65 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
> @@ -672,7 +672,7 @@ static int amdgpu_cs_sync_rings(struct amdgpu_cs_parser *p)
>   }
>   
>   /**
> - * cs_parser_fini() - clean parser states
> + * amdgpu_cs_parser_fini() - clean parser states
>    * @parser:	parser structure holding parsing context.
>    * @error:	error number
>    * @backoff:	indicator to backoff the reservation
> @@ -1488,7 +1488,7 @@ int amdgpu_cs_fence_to_handle_ioctl(struct drm_device *dev, void *data,
>   }
>   
>   /**
> - * amdgpu_cs_wait_all_fence - wait on all fences to signal
> + * amdgpu_cs_wait_all_fences - wait on all fences to signal
>    *
>    * @adev: amdgpu device
>    * @filp: file private
> @@ -1639,7 +1639,7 @@ int amdgpu_cs_wait_fences_ioctl(struct drm_device *dev, void *data,
>   }
>   
>   /**
> - * amdgpu_cs_find_bo_va - find bo_va for VM address
> + * amdgpu_cs_find_mapping - find bo_va for VM address
>    *
>    * @parser: command submission parser context
>    * @addr: VM address


WARNING: multiple messages have this Message-ID (diff)
From: "Christian König" <christian.koenig@amd.com>
To: Lee Jones <lee.jones@linaro.org>
Cc: David Airlie <airlied@linux.ie>,
	linux-kernel@vger.kernel.org, amd-gfx@lists.freedesktop.org,
	linaro-mm-sig@lists.linaro.org,
	Jerome Glisse <glisse@freedesktop.org>,
	dri-devel@lists.freedesktop.org,
	Alex Deucher <alexander.deucher@amd.com>,
	linux-media@vger.kernel.org
Subject: Re: [PATCH 35/40] drm/amd/amdgpu/amdgpu_cs: Repair some function naming disparity
Date: Fri, 16 Apr 2021 17:54:35 +0200	[thread overview]
Message-ID: <59a21fb5-224e-882f-5d2f-e337e78eb7db@amd.com> (raw)
In-Reply-To: <20210416143725.2769053-36-lee.jones@linaro.org>

Am 16.04.21 um 16:37 schrieb Lee Jones:
> Fixes the following W=1 kernel build warning(s):
>
>   drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c:685: warning: expecting prototype for cs_parser_fini(). Prototype was for amdgpu_cs_parser_fini() instead
>   drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c:1502: warning: expecting prototype for amdgpu_cs_wait_all_fence(). Prototype was for amdgpu_cs_wait_all_fences() instead
>   drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c:1656: warning: expecting prototype for amdgpu_cs_find_bo_va(). Prototype was for amdgpu_cs_find_mapping() instead
>
> Cc: Alex Deucher <alexander.deucher@amd.com>
> Cc: "Christian König" <christian.koenig@amd.com>
> Cc: David Airlie <airlied@linux.ie>
> Cc: Daniel Vetter <daniel@ffwll.ch>
> Cc: Sumit Semwal <sumit.semwal@linaro.org>
> Cc: Jerome Glisse <glisse@freedesktop.org>
> Cc: amd-gfx@lists.freedesktop.org
> Cc: dri-devel@lists.freedesktop.org
> Cc: linux-media@vger.kernel.org
> Cc: linaro-mm-sig@lists.linaro.org
> Signed-off-by: Lee Jones <lee.jones@linaro.org>

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

> ---
>   drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
> index b5c7669980458..90136f9dedd65 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
> @@ -672,7 +672,7 @@ static int amdgpu_cs_sync_rings(struct amdgpu_cs_parser *p)
>   }
>   
>   /**
> - * cs_parser_fini() - clean parser states
> + * amdgpu_cs_parser_fini() - clean parser states
>    * @parser:	parser structure holding parsing context.
>    * @error:	error number
>    * @backoff:	indicator to backoff the reservation
> @@ -1488,7 +1488,7 @@ int amdgpu_cs_fence_to_handle_ioctl(struct drm_device *dev, void *data,
>   }
>   
>   /**
> - * amdgpu_cs_wait_all_fence - wait on all fences to signal
> + * amdgpu_cs_wait_all_fences - wait on all fences to signal
>    *
>    * @adev: amdgpu device
>    * @filp: file private
> @@ -1639,7 +1639,7 @@ int amdgpu_cs_wait_fences_ioctl(struct drm_device *dev, void *data,
>   }
>   
>   /**
> - * amdgpu_cs_find_bo_va - find bo_va for VM address
> + * amdgpu_cs_find_mapping - find bo_va for VM address
>    *
>    * @parser: command submission parser context
>    * @addr: VM address

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

WARNING: multiple messages have this Message-ID (diff)
From: "Christian König" <christian.koenig@amd.com>
To: Lee Jones <lee.jones@linaro.org>
Cc: David Airlie <airlied@linux.ie>,
	linux-kernel@vger.kernel.org, amd-gfx@lists.freedesktop.org,
	linaro-mm-sig@lists.linaro.org,
	Jerome Glisse <glisse@freedesktop.org>,
	dri-devel@lists.freedesktop.org, Daniel Vetter <daniel@ffwll.ch>,
	Alex Deucher <alexander.deucher@amd.com>,
	Sumit Semwal <sumit.semwal@linaro.org>,
	linux-media@vger.kernel.org
Subject: Re: [PATCH 35/40] drm/amd/amdgpu/amdgpu_cs: Repair some function naming disparity
Date: Fri, 16 Apr 2021 17:54:35 +0200	[thread overview]
Message-ID: <59a21fb5-224e-882f-5d2f-e337e78eb7db@amd.com> (raw)
In-Reply-To: <20210416143725.2769053-36-lee.jones@linaro.org>

Am 16.04.21 um 16:37 schrieb Lee Jones:
> Fixes the following W=1 kernel build warning(s):
>
>   drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c:685: warning: expecting prototype for cs_parser_fini(). Prototype was for amdgpu_cs_parser_fini() instead
>   drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c:1502: warning: expecting prototype for amdgpu_cs_wait_all_fence(). Prototype was for amdgpu_cs_wait_all_fences() instead
>   drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c:1656: warning: expecting prototype for amdgpu_cs_find_bo_va(). Prototype was for amdgpu_cs_find_mapping() instead
>
> Cc: Alex Deucher <alexander.deucher@amd.com>
> Cc: "Christian König" <christian.koenig@amd.com>
> Cc: David Airlie <airlied@linux.ie>
> Cc: Daniel Vetter <daniel@ffwll.ch>
> Cc: Sumit Semwal <sumit.semwal@linaro.org>
> Cc: Jerome Glisse <glisse@freedesktop.org>
> Cc: amd-gfx@lists.freedesktop.org
> Cc: dri-devel@lists.freedesktop.org
> Cc: linux-media@vger.kernel.org
> Cc: linaro-mm-sig@lists.linaro.org
> Signed-off-by: Lee Jones <lee.jones@linaro.org>

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

> ---
>   drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
> index b5c7669980458..90136f9dedd65 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
> @@ -672,7 +672,7 @@ static int amdgpu_cs_sync_rings(struct amdgpu_cs_parser *p)
>   }
>   
>   /**
> - * cs_parser_fini() - clean parser states
> + * amdgpu_cs_parser_fini() - clean parser states
>    * @parser:	parser structure holding parsing context.
>    * @error:	error number
>    * @backoff:	indicator to backoff the reservation
> @@ -1488,7 +1488,7 @@ int amdgpu_cs_fence_to_handle_ioctl(struct drm_device *dev, void *data,
>   }
>   
>   /**
> - * amdgpu_cs_wait_all_fence - wait on all fences to signal
> + * amdgpu_cs_wait_all_fences - wait on all fences to signal
>    *
>    * @adev: amdgpu device
>    * @filp: file private
> @@ -1639,7 +1639,7 @@ int amdgpu_cs_wait_fences_ioctl(struct drm_device *dev, void *data,
>   }
>   
>   /**
> - * amdgpu_cs_find_bo_va - find bo_va for VM address
> + * amdgpu_cs_find_mapping - find bo_va for VM address
>    *
>    * @parser: command submission parser context
>    * @addr: VM address

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

  reply	other threads:[~2021-04-16 15:55 UTC|newest]

Thread overview: 235+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-16 14:36 [PATCH 00/40] [Set 16] Rid W=1 warnings from GPU! Lee Jones
2021-04-16 14:36 ` Lee Jones
2021-04-16 14:36 ` Lee Jones
2021-04-16 14:36 ` Lee Jones
2021-04-16 14:36 ` [Nouveau] " Lee Jones
2021-04-16 14:36 ` [PATCH 01/40] drm/nouveau/nvkm/subdev/bios/init: Demote obvious abuse of kernel-doc Lee Jones
2021-04-16 14:36   ` Lee Jones
2021-04-16 14:36   ` [Nouveau] " Lee Jones
2021-04-19 11:40   ` Karol Herbst
2021-04-19 11:40     ` Karol Herbst
2021-04-19 11:40     ` Karol Herbst
2021-04-16 14:36 ` [PATCH 02/40] drm/nouveau/dispnv50/disp: Remove unused variable 'ret' Lee Jones
2021-04-16 14:36   ` Lee Jones
2021-04-16 14:36   ` [Nouveau] " Lee Jones
2021-04-19 11:42   ` Karol Herbst
2021-04-19 11:42     ` Karol Herbst
2021-04-19 11:42     ` Karol Herbst
2021-04-16 14:36 ` [PATCH 03/40] drm/msm/dp/dp_display: Remove unused variable 'hpd' Lee Jones
2021-04-16 14:36   ` Lee Jones
2021-04-16 14:36 ` [PATCH 04/40] include: drm: drm_atomic: Make use of 'new_plane_state' Lee Jones
2021-04-16 14:36   ` Lee Jones
2021-04-16 14:36 ` [PATCH 05/40] drm/nouveau/nvkm/subdev/volt/gk20a: Demote non-conformant kernel-doc headers Lee Jones
2021-04-16 14:36   ` Lee Jones
2021-04-16 14:36   ` [Nouveau] " Lee Jones
2021-04-19 11:43   ` Karol Herbst
2021-04-19 11:43     ` Karol Herbst
2021-04-19 11:43     ` Karol Herbst
2021-04-16 14:36 ` [PATCH 06/40] drm/nouveau/nvkm/engine/gr/gf100: Demote non-conformant kernel-doc header Lee Jones
2021-04-16 14:36   ` Lee Jones
2021-04-16 14:36   ` [Nouveau] " Lee Jones
2021-04-19 11:43   ` Karol Herbst
2021-04-19 11:43     ` Karol Herbst
2021-04-19 11:43     ` Karol Herbst
2021-04-16 14:36 ` [PATCH 07/40] drm/nouveau/nouveau_bo: Remove unused variables 'dev' Lee Jones
2021-04-16 14:36   ` Lee Jones
2021-04-16 14:36   ` [Nouveau] " Lee Jones
2021-04-19 11:44   ` Karol Herbst
2021-04-19 11:44     ` Karol Herbst
2021-04-19 11:44     ` Karol Herbst
2021-04-16 14:36 ` [PATCH 08/40] drm/nouveau/nouveau_display: Remove set but unused variable 'width' Lee Jones
2021-04-16 14:36   ` Lee Jones
2021-04-16 14:36   ` [Nouveau] " Lee Jones
2021-04-16 14:36 ` [PATCH 09/40] drm/nouveau/dispnv04/crtc: Demote non-conforming kernel-doc headers Lee Jones
2021-04-16 14:36   ` Lee Jones
2021-04-16 14:36   ` [Nouveau] " Lee Jones
2021-04-19 11:45   ` Karol Herbst
2021-04-19 11:45     ` Karol Herbst
2021-04-19 11:45     ` [Nouveau] " Karol Herbst
2021-04-16 14:36 ` [PATCH 10/40] drm/nouveau/dispnv50/disp: Remove unused variable 'ret' from function returning void Lee Jones
2021-04-16 14:36   ` Lee Jones
2021-04-16 14:36   ` [Nouveau] " Lee Jones
2021-04-19 11:46   ` Karol Herbst
2021-04-19 11:46     ` Karol Herbst
2021-04-19 11:46     ` Karol Herbst
2021-04-16 14:36 ` [PATCH 11/40] drm/nouveau/dispnv50/headc57d: Make local function 'headc57d_olut' static Lee Jones
2021-04-16 14:36   ` Lee Jones
2021-04-16 14:36   ` [Nouveau] " Lee Jones
2021-04-19 11:46   ` Karol Herbst
2021-04-19 11:46     ` Karol Herbst
2021-04-19 11:46     ` Karol Herbst
2021-04-16 14:36 ` [PATCH 12/40] drm/nouveau/nv50_display: Remove superfluous prototype for local static functions Lee Jones
2021-04-16 14:36   ` Lee Jones
2021-04-16 14:36   ` [Nouveau] " Lee Jones
2021-04-19 11:46   ` Karol Herbst
2021-04-19 11:46     ` Karol Herbst
2021-04-19 11:46     ` Karol Herbst
2021-04-16 14:36 ` [PATCH 13/40] drm/nouveau/dispnv50/disp: Include header containing our prototypes Lee Jones
2021-04-16 14:36   ` Lee Jones
2021-04-16 14:36   ` [Nouveau] " Lee Jones
2021-04-19 11:49   ` Karol Herbst
2021-04-19 11:49     ` Karol Herbst
2021-04-19 11:49     ` Karol Herbst
2021-04-16 14:36 ` [PATCH 14/40] drm/nouveau/nouveau_ioc32: File headers are not good candidates for kernel-doc Lee Jones
2021-04-16 14:36   ` Lee Jones
2021-04-16 14:36   ` [Nouveau] " Lee Jones
2021-04-19 11:49   ` Karol Herbst
2021-04-19 11:49     ` Karol Herbst
2021-04-19 11:49     ` [Nouveau] " Karol Herbst
2021-04-16 14:37 ` [PATCH 15/40] drm/nouveau/nouveau_svm: Remove unused variable 'ret' from void function Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:37   ` [Nouveau] " Lee Jones
2021-04-19 11:48   ` Karol Herbst
2021-04-19 11:48     ` Karol Herbst
2021-04-19 11:48     ` Karol Herbst
2021-04-16 14:37 ` [PATCH 16/40] drm/nouveau/nouveau_ioc32: Demote kernel-doc abuse to standard comment block Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:37   ` [Nouveau] " Lee Jones
2021-04-19 11:49   ` Karol Herbst
2021-04-19 11:49     ` Karol Herbst
2021-04-19 11:49     ` Karol Herbst
2021-04-16 14:37 ` [PATCH 17/40] gpu: host1x: bus: Remove superfluous param description 'key' Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:37 ` [PATCH 18/40] drm/omapdrm/omap_irq: Fix a couple of incorrectly documented functions Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-23 12:12   ` Tomi Valkeinen
2021-04-23 12:12     ` Tomi Valkeinen
2021-04-16 14:37 ` [PATCH 19/40] drm/omapdrm/omap_gem: Properly document omap_gem_dumb_map_offset() Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-23 12:12   ` Tomi Valkeinen
2021-04-23 12:12     ` Tomi Valkeinen
2021-04-16 14:37 ` [PATCH 20/40] drm/xlnx/zynqmp_disp: Fix incorrectly documented enum 'zynqmp_disp_id' Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:45   ` Laurent Pinchart
2021-04-16 14:45     ` Laurent Pinchart
2021-04-16 14:45     ` Laurent Pinchart
2021-04-16 14:37 ` [PATCH 21/40] drm/xlnx/zynqmp_dp: Fix a little potential doc-rot Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:46   ` Laurent Pinchart
2021-04-16 14:46     ` Laurent Pinchart
2021-04-16 14:46     ` Laurent Pinchart
2021-04-16 14:37 ` [PATCH 22/40] drm/ttm/ttm_tt: Demote non-conformant kernel-doc header Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 15:34   ` Christian König
2021-04-16 15:34     ` Christian König
2021-04-19  7:32     ` Lee Jones
2021-04-19  7:32       ` Lee Jones
2021-04-16 14:37 ` [PATCH 23/40] drm/ttm/ttm_bo: Fix incorrectly documented function 'ttm_bo_cleanup_refs' Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 15:31   ` Christian König
2021-04-16 15:31     ` Christian König
2021-04-20 21:27     ` Alex Deucher
2021-04-20 21:27       ` Alex Deucher
2021-04-21  7:02       ` Christian König
2021-04-21  7:02         ` Christian König
2021-04-16 14:37 ` [PATCH 24/40] drm/scheduler/sched_entity: Fix some function name disparity Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:37 ` [PATCH 25/40] drm/radeon/radeon_device: Provide function name in kernel-doc header Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 15:51   ` Christian König
2021-04-16 15:51     ` Christian König
2021-04-16 15:51     ` Christian König
2021-04-20 23:56     ` Alex Deucher
2021-04-20 23:56       ` Alex Deucher
2021-04-20 23:56       ` Alex Deucher
2021-04-16 14:37 ` [PATCH 26/40] drm/amd/amdgpu/amdgpu_device: Remove unused variable 'r' Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-20 23:53   ` Alex Deucher
2021-04-20 23:53     ` Alex Deucher
2021-04-20 23:53     ` Alex Deucher
2021-04-16 14:37 ` [PATCH 27/40] drm/ttm/ttm_device: Demote kernel-doc abuses Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 15:32   ` Christian König
2021-04-16 15:32     ` Christian König
2021-04-20  8:53     ` Daniel Vetter
2021-04-20  8:53       ` Daniel Vetter
2021-04-22 12:09       ` Christian König
2021-04-22 12:09         ` Christian König
2021-04-16 14:37 ` [PATCH 28/40] drm/panel/panel-raspberrypi-touchscreen: Demote kernel-doc abuse Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:37 ` [PATCH 29/40] drm/amd/amdgpu/amdgpu_fence: Provide description for 'sched_score' Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 15:52   ` Christian König
2021-04-16 15:52     ` Christian König
2021-04-16 15:52     ` Christian König
2021-04-20 23:57     ` Alex Deucher
2021-04-20 23:57       ` Alex Deucher
2021-04-20 23:57       ` Alex Deucher
2021-04-16 14:37 ` [PATCH 30/40] drm/vgem/vgem_drv: Demote kernel-doc abuse Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:37 ` [PATCH 31/40] drm/amd/amdgpu/amdgpu_gart: Correct a couple of function names in the docs Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 15:35   ` Nirmoy
2021-04-16 15:35     ` Nirmoy
2021-04-16 15:35     ` Nirmoy
2021-04-16 15:53   ` Christian König
2021-04-16 15:53     ` Christian König
2021-04-16 15:53     ` Christian König
2021-04-20 23:59     ` Alex Deucher
2021-04-20 23:59       ` Alex Deucher
2021-04-20 23:59       ` Alex Deucher
2021-04-23  8:28       ` Lee Jones
2021-04-23  8:28         ` Lee Jones
2021-04-23  8:28         ` Lee Jones
2021-04-16 14:37 ` [PATCH 32/40] drm/amd/amdgpu/amdgpu_ttm: Fix incorrectly documented function 'amdgpu_ttm_copy_mem_to_mem()' Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 15:53   ` Christian König
2021-04-16 15:53     ` Christian König
2021-04-16 15:53     ` Christian König
2021-04-21  0:00     ` Alex Deucher
2021-04-21  0:00       ` Alex Deucher
2021-04-21  0:00       ` Alex Deucher
2021-04-16 14:37 ` [PATCH 33/40] drm/amd/amdgpu/amdgpu_ring: Provide description for 'sched_score' Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 15:54   ` Christian König
2021-04-16 15:54     ` Christian König
2021-04-16 15:54     ` Christian König
2021-04-21  0:01     ` Alex Deucher
2021-04-21  0:01       ` Alex Deucher
2021-04-21  0:01       ` Alex Deucher
2021-04-16 14:37 ` [PATCH 34/40] drm/exynos/exynos_drm_fimd: Realign function name with its header Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:40   ` Krzysztof Kozlowski
2021-04-16 14:40     ` Krzysztof Kozlowski
2021-04-16 14:40     ` Krzysztof Kozlowski
2021-04-16 14:47     ` Lee Jones
2021-04-16 14:47       ` Lee Jones
2021-04-16 14:47       ` Lee Jones
2021-04-16 14:37 ` [PATCH 35/40] drm/amd/amdgpu/amdgpu_cs: Repair some function naming disparity Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 15:54   ` Christian König [this message]
2021-04-16 15:54     ` Christian König
2021-04-16 15:54     ` Christian König
2021-04-21  0:03     ` Alex Deucher
2021-04-21  0:03       ` Alex Deucher
2021-04-21  0:03       ` Alex Deucher
2021-04-16 14:37 ` [PATCH 36/40] drm/exynos/exynos7_drm_decon: Realign function name with its header Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:41   ` Krzysztof Kozlowski
2021-04-16 14:41     ` Krzysztof Kozlowski
2021-04-16 14:41     ` Krzysztof Kozlowski
2021-04-16 14:37 ` [PATCH 37/40] drm/panel/panel-sitronix-st7701: Demote kernel-doc format abuse Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:37 ` [PATCH 38/40] drm/exynos/exynos_drm_ipp: Fix some function name disparity issues Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:42   ` Krzysztof Kozlowski
2021-04-16 14:42     ` Krzysztof Kozlowski
2021-04-16 14:42     ` Krzysztof Kozlowski
2021-04-16 14:37 ` [PATCH 39/40] drm/sti/sti_hdmi: Provide kernel-doc headers with function names Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:37 ` [PATCH 40/40] drm/mediatek/mtk_disp_ccorr: Demote less than half-populated struct header Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:37   ` Lee Jones
2021-04-16 14:37   ` Lee Jones

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=59a21fb5-224e-882f-5d2f-e337e78eb7db@amd.com \
    --to=christian.koenig@amd.com \
    --cc=airlied@linux.ie \
    --cc=alexander.deucher@amd.com \
    --cc=amd-gfx@lists.freedesktop.org \
    --cc=daniel@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=glisse@freedesktop.org \
    --cc=lee.jones@linaro.org \
    --cc=linaro-mm-sig@lists.linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=sumit.semwal@linaro.org \
    /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.