All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/drm_mm.h: Fix the name of the referenced function in comment
@ 2017-11-01 14:04 Liviu Dudau
  2017-11-02  4:02 ` Alex Deucher
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Liviu Dudau @ 2017-11-01 14:04 UTC (permalink / raw)
  To: Daniel Vetter; +Cc: Liviu Dudau, DRI-devel

drm_mm_insert_node_generic() is a simplified version of
drm_mm_insert_node_in_range(), update comment to reflect correct
function name.

Signed-off-by: Liviu Dudau <liviu.dudau@arm.com>
---
 include/drm/drm_mm.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/drm/drm_mm.h b/include/drm/drm_mm.h
index 8d10fc97801ce..101f566ae43d0 100644
--- a/include/drm/drm_mm.h
+++ b/include/drm/drm_mm.h
@@ -386,7 +386,7 @@ int drm_mm_insert_node_in_range(struct drm_mm *mm,
  * @color: opaque tag value to use for this node
  * @mode: fine-tune the allocation search and placement
  *
- * This is a simplified version of drm_mm_insert_node_in_range_generic() with no
+ * This is a simplified version of drm_mm_insert_node_in_range() with no
  * range restrictions applied.
  *
  * The preallocated node must be cleared to 0.
-- 
2.14.3

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

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

* Re: [PATCH] drm/drm_mm.h: Fix the name of the referenced function in comment
  2017-11-01 14:04 [PATCH] drm/drm_mm.h: Fix the name of the referenced function in comment Liviu Dudau
@ 2017-11-02  4:02 ` Alex Deucher
  2017-11-02  9:46 ` Christian König
  2017-11-02 13:15 ` Gustavo Padovan
  2 siblings, 0 replies; 4+ messages in thread
From: Alex Deucher @ 2017-11-02  4:02 UTC (permalink / raw)
  To: Liviu Dudau; +Cc: Daniel Vetter, DRI-devel

On Wed, Nov 1, 2017 at 10:04 AM, Liviu Dudau <Liviu.Dudau@arm.com> wrote:
> drm_mm_insert_node_generic() is a simplified version of
> drm_mm_insert_node_in_range(), update comment to reflect correct
> function name.
>
> Signed-off-by: Liviu Dudau <liviu.dudau@arm.com>

Reviewed-by: Alex Deucher <alexander.deucher@amd.com>

> ---
>  include/drm/drm_mm.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/include/drm/drm_mm.h b/include/drm/drm_mm.h
> index 8d10fc97801ce..101f566ae43d0 100644
> --- a/include/drm/drm_mm.h
> +++ b/include/drm/drm_mm.h
> @@ -386,7 +386,7 @@ int drm_mm_insert_node_in_range(struct drm_mm *mm,
>   * @color: opaque tag value to use for this node
>   * @mode: fine-tune the allocation search and placement
>   *
> - * This is a simplified version of drm_mm_insert_node_in_range_generic() with no
> + * This is a simplified version of drm_mm_insert_node_in_range() with no
>   * range restrictions applied.
>   *
>   * The preallocated node must be cleared to 0.
> --
> 2.14.3
>
> _______________________________________________
> 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] 4+ messages in thread

* Re: [PATCH] drm/drm_mm.h: Fix the name of the referenced function in comment
  2017-11-01 14:04 [PATCH] drm/drm_mm.h: Fix the name of the referenced function in comment Liviu Dudau
  2017-11-02  4:02 ` Alex Deucher
@ 2017-11-02  9:46 ` Christian König
  2017-11-02 13:15 ` Gustavo Padovan
  2 siblings, 0 replies; 4+ messages in thread
From: Christian König @ 2017-11-02  9:46 UTC (permalink / raw)
  To: Liviu Dudau, Daniel Vetter; +Cc: DRI-devel

Am 01.11.2017 um 15:04 schrieb Liviu Dudau:
> drm_mm_insert_node_generic() is a simplified version of
> drm_mm_insert_node_in_range(), update comment to reflect correct
> function name.
>
> Signed-off-by: Liviu Dudau <liviu.dudau@arm.com>

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

> ---
>   include/drm/drm_mm.h | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/include/drm/drm_mm.h b/include/drm/drm_mm.h
> index 8d10fc97801ce..101f566ae43d0 100644
> --- a/include/drm/drm_mm.h
> +++ b/include/drm/drm_mm.h
> @@ -386,7 +386,7 @@ int drm_mm_insert_node_in_range(struct drm_mm *mm,
>    * @color: opaque tag value to use for this node
>    * @mode: fine-tune the allocation search and placement
>    *
> - * This is a simplified version of drm_mm_insert_node_in_range_generic() with no
> + * This is a simplified version of drm_mm_insert_node_in_range() with no
>    * range restrictions applied.
>    *
>    * The preallocated node must be cleared to 0.


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

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

* Re: [PATCH] drm/drm_mm.h: Fix the name of the referenced function in comment
  2017-11-01 14:04 [PATCH] drm/drm_mm.h: Fix the name of the referenced function in comment Liviu Dudau
  2017-11-02  4:02 ` Alex Deucher
  2017-11-02  9:46 ` Christian König
@ 2017-11-02 13:15 ` Gustavo Padovan
  2 siblings, 0 replies; 4+ messages in thread
From: Gustavo Padovan @ 2017-11-02 13:15 UTC (permalink / raw)
  To: Liviu Dudau; +Cc: Daniel Vetter, DRI-devel

Hi Liviu,

2017-11-01 Liviu Dudau <Liviu.Dudau@arm.com>:

> drm_mm_insert_node_generic() is a simplified version of
> drm_mm_insert_node_in_range(), update comment to reflect correct
> function name.
> 
> Signed-off-by: Liviu Dudau <liviu.dudau@arm.com>
> ---
>  include/drm/drm_mm.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

queued for 4.16. Thanks for your patch.

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

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

end of thread, other threads:[~2017-11-02 13:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-01 14:04 [PATCH] drm/drm_mm.h: Fix the name of the referenced function in comment Liviu Dudau
2017-11-02  4:02 ` Alex Deucher
2017-11-02  9:46 ` Christian König
2017-11-02 13:15 ` Gustavo Padovan

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.