mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] drm/ttm: Remove unneeded blank line in comment
@ 2025-06-30 14:41 Jocelyn Falempe
  2025-06-30 15:00 ` Thomas Zimmermann
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Jocelyn Falempe @ 2025-06-30 14:41 UTC (permalink / raw)
  To: Maarten Lankhorst, Jani Nikula, Rodrigo Vivi, Joonas Lahtinen,
	Tvrtko Ursulin, Ville Syrjälä,
	David Airlie, Simona Vetter, Christian Koenig, Huang Rui,
	Matthew Auld, Matthew Brost, Maxime Ripard, Thomas Zimmermann,
	intel-gfx, intel-xe, dri-devel, linux-kernel
  Cc: Jocelyn Falempe, kernel test robot

There is an unneeded blank line in the documentation of the function
ttm_bo_kmap_try_from_panic().

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202506290453.NeTXAb7S-lkp@intel.com/
Fixes: 718370ff28328 ("drm/ttm: Add ttm_bo_kmap_try_from_panic()")
Signed-off-by: Jocelyn Falempe <jfalempe@redhat.com>
---

Can this be merged through the drm-intel-next, as this is were the
offending commit was merged.

 drivers/gpu/drm/ttm/ttm_bo_util.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/gpu/drm/ttm/ttm_bo_util.c b/drivers/gpu/drm/ttm/ttm_bo_util.c
index ad95e8b9852b..16cb4065214d 100644
--- a/drivers/gpu/drm/ttm/ttm_bo_util.c
+++ b/drivers/gpu/drm/ttm/ttm_bo_util.c
@@ -382,7 +382,6 @@ static int ttm_bo_kmap_ttm(struct ttm_buffer_object *bo,
 }
 
 /**
- *
  * ttm_bo_kmap_try_from_panic
  *
  * @bo: The buffer object

base-commit: d5bafb1c294cf99cc5991f7fdecc79898f9b8d0e
-- 
2.49.0


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

* Re: [PATCH] drm/ttm: Remove unneeded blank line in comment
  2025-06-30 14:41 [PATCH] drm/ttm: Remove unneeded blank line in comment Jocelyn Falempe
@ 2025-06-30 15:00 ` Thomas Zimmermann
  2025-06-30 17:39 ` Christian König
  2025-07-02 20:40 ` Lucas De Marchi
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Zimmermann @ 2025-06-30 15:00 UTC (permalink / raw)
  To: Jocelyn Falempe, Maarten Lankhorst, Jani Nikula, Rodrigo Vivi,
	Joonas Lahtinen, Tvrtko Ursulin, Ville Syrjälä,
	David Airlie, Simona Vetter, Christian Koenig, Huang Rui,
	Matthew Auld, Matthew Brost, Maxime Ripard, intel-gfx, intel-xe,
	dri-devel, linux-kernel
  Cc: kernel test robot



Am 30.06.25 um 16:41 schrieb Jocelyn Falempe:
> There is an unneeded blank line in the documentation of the function
> ttm_bo_kmap_try_from_panic().
>
> Reported-by: kernel test robot <lkp@intel.com>
> Closes: https://lore.kernel.org/oe-kbuild-all/202506290453.NeTXAb7S-lkp@intel.com/
> Fixes: 718370ff28328 ("drm/ttm: Add ttm_bo_kmap_try_from_panic()")
> Signed-off-by: Jocelyn Falempe <jfalempe@redhat.com>

Acked-by: Thomas Zimmermann <tzimmermann@suse.de>

> ---
>
> Can this be merged through the drm-intel-next, as this is were the
> offending commit was merged.
>
>   drivers/gpu/drm/ttm/ttm_bo_util.c | 1 -
>   1 file changed, 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/ttm/ttm_bo_util.c b/drivers/gpu/drm/ttm/ttm_bo_util.c
> index ad95e8b9852b..16cb4065214d 100644
> --- a/drivers/gpu/drm/ttm/ttm_bo_util.c
> +++ b/drivers/gpu/drm/ttm/ttm_bo_util.c
> @@ -382,7 +382,6 @@ static int ttm_bo_kmap_ttm(struct ttm_buffer_object *bo,
>   }
>   
>   /**
> - *
>    * ttm_bo_kmap_try_from_panic
>    *
>    * @bo: The buffer object
>
> base-commit: d5bafb1c294cf99cc5991f7fdecc79898f9b8d0e

-- 
--
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Frankenstrasse 146, 90461 Nuernberg, Germany
GF: Ivo Totev, Andrew Myers, Andrew McDonald, Boudien Moerman
HRB 36809 (AG Nuernberg)


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

* Re: [PATCH] drm/ttm: Remove unneeded blank line in comment
  2025-06-30 14:41 [PATCH] drm/ttm: Remove unneeded blank line in comment Jocelyn Falempe
  2025-06-30 15:00 ` Thomas Zimmermann
@ 2025-06-30 17:39 ` Christian König
  2025-07-02 20:40 ` Lucas De Marchi
  2 siblings, 0 replies; 4+ messages in thread
From: Christian König @ 2025-06-30 17:39 UTC (permalink / raw)
  To: Jocelyn Falempe, Maarten Lankhorst, Jani Nikula, Rodrigo Vivi,
	Joonas Lahtinen, Tvrtko Ursulin, Ville Syrjälä,
	David Airlie, Simona Vetter, Huang Rui, Matthew Auld,
	Matthew Brost, Maxime Ripard, Thomas Zimmermann, intel-gfx,
	intel-xe, dri-devel, linux-kernel
  Cc: kernel test robot

On 30.06.25 16:41, Jocelyn Falempe wrote:
> There is an unneeded blank line in the documentation of the function
> ttm_bo_kmap_try_from_panic().
> 
> Reported-by: kernel test robot <lkp@intel.com>
> Closes: https://lore.kernel.org/oe-kbuild-all/202506290453.NeTXAb7S-lkp@intel.com/
> Fixes: 718370ff28328 ("drm/ttm: Add ttm_bo_kmap_try_from_panic()")
> Signed-off-by: Jocelyn Falempe <jfalempe@redhat.com>

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

> ---
> 
> Can this be merged through the drm-intel-next, as this is were the
> offending commit was merged.
> 
>  drivers/gpu/drm/ttm/ttm_bo_util.c | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/ttm/ttm_bo_util.c b/drivers/gpu/drm/ttm/ttm_bo_util.c
> index ad95e8b9852b..16cb4065214d 100644
> --- a/drivers/gpu/drm/ttm/ttm_bo_util.c
> +++ b/drivers/gpu/drm/ttm/ttm_bo_util.c
> @@ -382,7 +382,6 @@ static int ttm_bo_kmap_ttm(struct ttm_buffer_object *bo,
>  }
>  
>  /**
> - *
>   * ttm_bo_kmap_try_from_panic
>   *
>   * @bo: The buffer object
> 
> base-commit: d5bafb1c294cf99cc5991f7fdecc79898f9b8d0e


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

* Re: [PATCH] drm/ttm: Remove unneeded blank line in comment
  2025-06-30 14:41 [PATCH] drm/ttm: Remove unneeded blank line in comment Jocelyn Falempe
  2025-06-30 15:00 ` Thomas Zimmermann
  2025-06-30 17:39 ` Christian König
@ 2025-07-02 20:40 ` Lucas De Marchi
  2 siblings, 0 replies; 4+ messages in thread
From: Lucas De Marchi @ 2025-07-02 20:40 UTC (permalink / raw)
  To: Jocelyn Falempe
  Cc: Maarten Lankhorst, Jani Nikula, Rodrigo Vivi, Joonas Lahtinen,
	Tvrtko Ursulin, Ville Syrjälä,
	David Airlie, Simona Vetter, Christian Koenig, Huang Rui,
	Matthew Auld, Matthew Brost, Maxime Ripard, Thomas Zimmermann,
	intel-gfx, intel-xe, dri-devel, linux-kernel, kernel test robot

On Mon, Jun 30, 2025 at 04:41:08PM +0200, Jocelyn Falempe wrote:
>There is an unneeded blank line in the documentation of the function
>ttm_bo_kmap_try_from_panic().
>
>Reported-by: kernel test robot <lkp@intel.com>
>Closes: https://lore.kernel.org/oe-kbuild-all/202506290453.NeTXAb7S-lkp@intel.com/
>Fixes: 718370ff28328 ("drm/ttm: Add ttm_bo_kmap_try_from_panic()")
>Signed-off-by: Jocelyn Falempe <jfalempe@redhat.com>
>---
>
>Can this be merged through the drm-intel-next, as this is were the
>offending commit was merged.

Applied to drm-intel-next, thanks!

[1/1] drm/ttm: Remove unneeded blank line in comment
       commit: d6a59ee852758bc69c4cc821954db277a2bd5b93

Lucas De Marchi

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

end of thread, other threads:[~2025-07-02 20:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-06-30 14:41 [PATCH] drm/ttm: Remove unneeded blank line in comment Jocelyn Falempe
2025-06-30 15:00 ` Thomas Zimmermann
2025-06-30 17:39 ` Christian König
2025-07-02 20:40 ` Lucas De Marchi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®