All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm: Fix modifiers_property kernel-doc comment
@ 2017-11-25 19:27 Hans de Goede
  2017-11-25 19:30 ` ✗ Fi.CI.BAT: failure for " Patchwork
  2017-11-28 10:28 ` [PATCH] " Daniel Vetter
  0 siblings, 2 replies; 4+ messages in thread
From: Hans de Goede @ 2017-11-25 19:27 UTC (permalink / raw)
  To: Daniel Vetter, Jani Nikula; +Cc: Hans de Goede, intel-gfx, dri-devel

This fixes the following make kerneldocs messages:

./include/drm/drm_mode_config.h:772: warning: No description found for parameter 'modifiers_property'
./include/drm/drm_mode_config.h:772: warning: Excess struct member 'modifiers' description in 'drm_mode_config'

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
 include/drm/drm_mode_config.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/drm/drm_mode_config.h b/include/drm/drm_mode_config.h
index 3716e6b8fed5..cb9ffbda36cc 100644
--- a/include/drm/drm_mode_config.h
+++ b/include/drm/drm_mode_config.h
@@ -759,7 +759,7 @@ struct drm_mode_config {
 	bool allow_fb_modifiers;
 
 	/**
-	 * @modifiers: Plane property to list support modifier/format
+	 * @modifiers_property: Plane property to list support modifier/format
 	 * combination.
 	 */
 	struct drm_property *modifiers_property;
-- 
2.14.3

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

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

* ✗ Fi.CI.BAT: failure for drm: Fix modifiers_property kernel-doc comment
  2017-11-25 19:27 [PATCH] drm: Fix modifiers_property kernel-doc comment Hans de Goede
@ 2017-11-25 19:30 ` Patchwork
  2017-11-28 10:28 ` [PATCH] " Daniel Vetter
  1 sibling, 0 replies; 4+ messages in thread
From: Patchwork @ 2017-11-25 19:30 UTC (permalink / raw)
  To: Hans de Goede; +Cc: intel-gfx

== Series Details ==

Series: drm: Fix modifiers_property kernel-doc comment
URL   : https://patchwork.freedesktop.org/series/34389/
State : failure

== Summary ==

Applying: drm: Fix modifiers_property kernel-doc comment
Patch failed at 0001 drm: Fix modifiers_property kernel-doc comment

Current HEAD:
commit b4a607bc6d5295f19d3bf15c6fb2024251dcc0ea
Author: Chris Wilson <chris@chris-wilson.co.uk>
Date:   Sat Nov 25 18:38:08 2017 +0000

    drm-tip: 2017y-11m-25d-18h-37m-40s UTC integration manifest

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

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

* Re: [PATCH] drm: Fix modifiers_property kernel-doc comment
  2017-11-25 19:27 [PATCH] drm: Fix modifiers_property kernel-doc comment Hans de Goede
  2017-11-25 19:30 ` ✗ Fi.CI.BAT: failure for " Patchwork
@ 2017-11-28 10:28 ` Daniel Vetter
  2017-11-28 14:21   ` Hans de Goede
  1 sibling, 1 reply; 4+ messages in thread
From: Daniel Vetter @ 2017-11-28 10:28 UTC (permalink / raw)
  To: Hans de Goede; +Cc: Daniel Vetter, intel-gfx, dri-devel, Hans de Goede

On Sat, Nov 25, 2017 at 08:27:31PM +0100, Hans de Goede wrote:
> This fixes the following make kerneldocs messages:
> 
> ./include/drm/drm_mode_config.h:772: warning: No description found for parameter 'modifiers_property'
> ./include/drm/drm_mode_config.h:772: warning: Excess struct member 'modifiers' description in 'drm_mode_config'
> 
> Signed-off-by: Hans de Goede <hdegoede@redhat.com>

Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>

Pls push to drm-misc-next, thanks.
-Daniel

> ---
>  include/drm/drm_mode_config.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/include/drm/drm_mode_config.h b/include/drm/drm_mode_config.h
> index 3716e6b8fed5..cb9ffbda36cc 100644
> --- a/include/drm/drm_mode_config.h
> +++ b/include/drm/drm_mode_config.h
> @@ -759,7 +759,7 @@ struct drm_mode_config {
>  	bool allow_fb_modifiers;
>  
>  	/**
> -	 * @modifiers: Plane property to list support modifier/format
> +	 * @modifiers_property: Plane property to list support modifier/format
>  	 * combination.
>  	 */
>  	struct drm_property *modifiers_property;
> -- 
> 2.14.3
> 
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx

-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* Re: [PATCH] drm: Fix modifiers_property kernel-doc comment
  2017-11-28 10:28 ` [PATCH] " Daniel Vetter
@ 2017-11-28 14:21   ` Hans de Goede
  0 siblings, 0 replies; 4+ messages in thread
From: Hans de Goede @ 2017-11-28 14:21 UTC (permalink / raw)
  To: Daniel Vetter, Hans de Goede; +Cc: Daniel Vetter, intel-gfx, dri-devel

Hi,

On 28-11-17 11:28, Daniel Vetter wrote:
> On Sat, Nov 25, 2017 at 08:27:31PM +0100, Hans de Goede wrote:
>> This fixes the following make kerneldocs messages:
>>
>> ./include/drm/drm_mode_config.h:772: warning: No description found for parameter 'modifiers_property'
>> ./include/drm/drm_mode_config.h:772: warning: Excess struct member 'modifiers' description in 'drm_mode_config'
>>
>> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
> 
> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
>
> Pls push to drm-misc-next, thanks.

Ville Syrjälä has already fixed this, but I missed that because the
fix was not yet in dinq when I prepared my panel-orientation patch
series.

Regards,

Hans



> -Daniel
> 
>> ---
>>   include/drm/drm_mode_config.h | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/include/drm/drm_mode_config.h b/include/drm/drm_mode_config.h
>> index 3716e6b8fed5..cb9ffbda36cc 100644
>> --- a/include/drm/drm_mode_config.h
>> +++ b/include/drm/drm_mode_config.h
>> @@ -759,7 +759,7 @@ struct drm_mode_config {
>>   	bool allow_fb_modifiers;
>>   
>>   	/**
>> -	 * @modifiers: Plane property to list support modifier/format
>> +	 * @modifiers_property: Plane property to list support modifier/format
>>   	 * combination.
>>   	 */
>>   	struct drm_property *modifiers_property;
>> -- 
>> 2.14.3
>>
>> _______________________________________________
>> Intel-gfx mailing list
>> Intel-gfx@lists.freedesktop.org
>> https://lists.freedesktop.org/mailman/listinfo/intel-gfx
> 
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

end of thread, other threads:[~2017-11-28 14:21 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-25 19:27 [PATCH] drm: Fix modifiers_property kernel-doc comment Hans de Goede
2017-11-25 19:30 ` ✗ Fi.CI.BAT: failure for " Patchwork
2017-11-28 10:28 ` [PATCH] " Daniel Vetter
2017-11-28 14:21   ` Hans de Goede

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.