* [PATCH xorg-wiki 1/2] DRMJanitors: fix DRM docs URL
@ 2017-01-24 16:58 Eric Engestrom
2017-01-24 16:58 ` [PATCH xorg-wiki 2/2] DRMJanitors: fix Markdown rendering Eric Engestrom
2017-01-25 4:56 ` [PATCH xorg-wiki 1/2] DRMJanitors: fix DRM docs URL Daniel Vetter
0 siblings, 2 replies; 3+ messages in thread
From: Eric Engestrom @ 2017-01-24 16:58 UTC (permalink / raw)
To: dri-devel
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
---
Sending these patches here because I don't have commit access to the wiki.
---
DRMJanitors.mdwn | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/DRMJanitors.mdwn b/DRMJanitors.mdwn
index a191f154..4c4a978a 100644
--- a/DRMJanitors.mdwn
+++ b/DRMJanitors.mdwn
@@ -82,7 +82,7 @@
The drm reference documentation is still lacking kerneldoc in a few areas. The task would be to clean up interfaces like moving functions around between files to better group them and improving the interfaces like dropping return values for functions that never fail. Then write kerneldoc for all exported functions and an overview section and integrate it all into the drm DocBook.
-See [[https://www.kernel.org/doc/htmldocs/drm/]] for what's there already.
+See [[https://www.kernel.org/doc/html/latest/gpu/index.html]] for what's there already.
Contact: [[Daniel Vetter|DanielVetter]]
--
Cheers,
Eric
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH xorg-wiki 2/2] DRMJanitors: fix Markdown rendering
2017-01-24 16:58 [PATCH xorg-wiki 1/2] DRMJanitors: fix DRM docs URL Eric Engestrom
@ 2017-01-24 16:58 ` Eric Engestrom
2017-01-25 4:56 ` [PATCH xorg-wiki 1/2] DRMJanitors: fix DRM docs URL Daniel Vetter
1 sibling, 0 replies; 3+ messages in thread
From: Eric Engestrom @ 2017-01-24 16:58 UTC (permalink / raw)
To: dri-devel
Underscores (`_`) have a special meaning in Markdown, and they are
unnecessary information here, so un-break the rendering by removing
them.
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
---
DRMJanitors.mdwn | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/DRMJanitors.mdwn b/DRMJanitors.mdwn
index 4c4a978a..3df8dcd4 100644
--- a/DRMJanitors.mdwn
+++ b/DRMJanitors.mdwn
@@ -14,11 +14,11 @@
Contact: [[Daniel Vetter|DanielVetter]], Thierry Redding, respective driver maintainers
-#### Switch from _reference/unreference to _get/put
+#### Switch from reference/unreference to get/put
-For some reason drm core uses _reference/unreference suffices for refcounting functions, but kernel uses _get/put (e.g. kref_get/put()). Would be good to switch over for consistency, and it's shorter. Needs to be done in 3 steps for each pair of functions:
+For some reason drm core uses reference/unreference suffices for refcounting functions, but kernel uses get/put (e.g. kref_get/put()). Would be good to switch over for consistency, and it's shorter. Needs to be done in 3 steps for each pair of functions:
-- Create new _get/put functions, define the old names as compat wrappers.
+- Create new get/put functions, define the old names as compat wrappers.
- Switch over each file/driver using a cocci-generated spatch.
- Once all users of the old names are gone, remove them.
--
Cheers,
Eric
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH xorg-wiki 1/2] DRMJanitors: fix DRM docs URL
2017-01-24 16:58 [PATCH xorg-wiki 1/2] DRMJanitors: fix DRM docs URL Eric Engestrom
2017-01-24 16:58 ` [PATCH xorg-wiki 2/2] DRMJanitors: fix Markdown rendering Eric Engestrom
@ 2017-01-25 4:56 ` Daniel Vetter
1 sibling, 0 replies; 3+ messages in thread
From: Daniel Vetter @ 2017-01-25 4:56 UTC (permalink / raw)
To: Eric Engestrom; +Cc: dri-devel
On Tue, Jan 24, 2017 at 04:58:36PM +0000, Eric Engestrom wrote:
> Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
Probably easier if I just give you a wiki account. Please pin me (danvet)
on #dri-devel on irc.
> ---
> Sending these patches here because I don't have commit access to the wiki.
> ---
> DRMJanitors.mdwn | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/DRMJanitors.mdwn b/DRMJanitors.mdwn
> index a191f154..4c4a978a 100644
> --- a/DRMJanitors.mdwn
> +++ b/DRMJanitors.mdwn
> @@ -82,7 +82,7 @@
>
> The drm reference documentation is still lacking kerneldoc in a few areas. The task would be to clean up interfaces like moving functions around between files to better group them and improving the interfaces like dropping return values for functions that never fail. Then write kerneldoc for all exported functions and an overview section and integrate it all into the drm DocBook.
>
> -See [[https://www.kernel.org/doc/htmldocs/drm/]] for what's there already.
> +See [[https://www.kernel.org/doc/html/latest/gpu/index.html]] for what's there already.
We have a new canonical location at https://dri.freedesktop.org/docs/drm/,
which is built from drm-tip and so more up-to-date.
-Daniel
>
> Contact: [[Daniel Vetter|DanielVetter]]
>
> --
> Cheers,
> Eric
>
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel
--
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-01-25 4:56 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-24 16:58 [PATCH xorg-wiki 1/2] DRMJanitors: fix DRM docs URL Eric Engestrom
2017-01-24 16:58 ` [PATCH xorg-wiki 2/2] DRMJanitors: fix Markdown rendering Eric Engestrom
2017-01-25 4:56 ` [PATCH xorg-wiki 1/2] DRMJanitors: fix DRM docs URL Daniel Vetter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox