* [PATCH] Documentation: DocBook: Rename drm_stub.c to drm_drv.c cause 'make xmldocs' failed
@ 2014-08-08 19:16 Masanari Iida
2014-08-11 5:57 ` Randy Dunlap
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Masanari Iida @ 2014-08-08 19:16 UTC (permalink / raw)
To: airlied, dri-devel, linux-kernel, rdunlap; +Cc: Masanari Iida
This patch fixed 'make xmldocs' failed on linus's tree and
linux-next as of 8th/Aug,2014.
When drm merge for 3.17-rc1 happen, a file was renamed from
drm_stub.c to drm_drv.c.
But Documentation/DocBook/drm.tmpl still have an old file name.
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
---
Documentation/DocBook/drm.tmpl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/DocBook/drm.tmpl b/Documentation/DocBook/drm.tmpl
index 1d3756d..bacefc5 100644
--- a/Documentation/DocBook/drm.tmpl
+++ b/Documentation/DocBook/drm.tmpl
@@ -315,7 +315,7 @@ char *date;</synopsis>
<function>drm_dev_unregister()</function> followed by a call to
<function>drm_dev_unref()</function>.
</para>
-!Edrivers/gpu/drm/drm_stub.c
+!Edrivers/gpu/drm/drm_drv.c
</sect2>
<sect2>
<title>Driver Load</title>
--
2.1.0.rc0.52.gaa544bf
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] Documentation: DocBook: Rename drm_stub.c to drm_drv.c cause 'make xmldocs' failed
2014-08-08 19:16 [PATCH] Documentation: DocBook: Rename drm_stub.c to drm_drv.c cause 'make xmldocs' failed Masanari Iida
@ 2014-08-11 5:57 ` Randy Dunlap
2014-08-12 17:30 ` Randy Dunlap
2014-08-13 20:56 ` Randy Dunlap
2 siblings, 0 replies; 6+ messages in thread
From: Randy Dunlap @ 2014-08-11 5:57 UTC (permalink / raw)
To: Masanari Iida, airlied, dri-devel, linux-kernel, Linus Torvalds
On 08/08/14 12:16, Masanari Iida wrote:
> This patch fixed 'make xmldocs' failed on linus's tree and
> linux-next as of 8th/Aug,2014.
>
> When drm merge for 3.17-rc1 happen, a file was renamed from
> drm_stub.c to drm_drv.c.
> But Documentation/DocBook/drm.tmpl still have an old file name.
>
> Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Thanks.
Linus, please merge as it fixes a DocBook build error.
> ---
> Documentation/DocBook/drm.tmpl | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/DocBook/drm.tmpl b/Documentation/DocBook/drm.tmpl
> index 1d3756d..bacefc5 100644
> --- a/Documentation/DocBook/drm.tmpl
> +++ b/Documentation/DocBook/drm.tmpl
> @@ -315,7 +315,7 @@ char *date;</synopsis>
> <function>drm_dev_unregister()</function> followed by a call to
> <function>drm_dev_unref()</function>.
> </para>
> -!Edrivers/gpu/drm/drm_stub.c
> +!Edrivers/gpu/drm/drm_drv.c
> </sect2>
> <sect2>
> <title>Driver Load</title>
>
--
~Randy
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] Documentation: DocBook: Rename drm_stub.c to drm_drv.c cause 'make xmldocs' failed
2014-08-08 19:16 [PATCH] Documentation: DocBook: Rename drm_stub.c to drm_drv.c cause 'make xmldocs' failed Masanari Iida
2014-08-11 5:57 ` Randy Dunlap
@ 2014-08-12 17:30 ` Randy Dunlap
2014-08-13 1:17 ` Fabio Estevam
2014-08-13 20:56 ` Randy Dunlap
2 siblings, 1 reply; 6+ messages in thread
From: Randy Dunlap @ 2014-08-12 17:30 UTC (permalink / raw)
To: Linus Torvalds; +Cc: Jim Davis, David Airlie, dri-devel, LKML, Masanari Iida
This patch fixed 'make xmldocs' failed on linus's tree and
linux-next as of 8th/Aug,2014.
When drm merge for 3.17-rc1 happen, a file was renamed from
drm_stub.c to drm_drv.c.
But Documentation/DocBook/drm.tmpl still have an old file name.
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
---
Documentation/DocBook/drm.tmpl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Linus, please merge since it fixes a fatal DocBook error.
diff --git a/Documentation/DocBook/drm.tmpl b/Documentation/DocBook/drm.tmpl
index 1d3756d..bacefc5 100644
--- a/Documentation/DocBook/drm.tmpl
+++ b/Documentation/DocBook/drm.tmpl
@@ -315,7 +315,7 @@ char *date;</synopsis>
<function>drm_dev_unregister()</function> followed by a call to
<function>drm_dev_unref()</function>.
</para>
-!Edrivers/gpu/drm/drm_stub.c
+!Edrivers/gpu/drm/drm_drv.c
</sect2>
<sect2>
<title>Driver Load</title>
--
2.1.0.rc0.52.gaa544bf
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] Documentation: DocBook: Rename drm_stub.c to drm_drv.c cause 'make xmldocs' failed
2014-08-12 17:30 ` Randy Dunlap
@ 2014-08-13 1:17 ` Fabio Estevam
2014-08-13 6:49 ` Randy Dunlap
0 siblings, 1 reply; 6+ messages in thread
From: Fabio Estevam @ 2014-08-13 1:17 UTC (permalink / raw)
To: Randy Dunlap; +Cc: Linus Torvalds, Masanari Iida, Jim Davis, dri-devel, LKML
On Tue, Aug 12, 2014 at 2:30 PM, Randy Dunlap <rdunlap@infradead.org> wrote:
> This patch fixed 'make xmldocs' failed on linus's tree and
> linux-next as of 8th/Aug,2014.
>
> When drm merge for 3.17-rc1 happen, a file was renamed from
> drm_stub.c to drm_drv.c.
> But Documentation/DocBook/drm.tmpl still have an old file name.
>
> Signed-off-by: Masanari Iida <standby24x7@gmail.com>
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Isn't the From field missing to indicate Masanari's authorship of this patch?
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Documentation: DocBook: Rename drm_stub.c to drm_drv.c cause 'make xmldocs' failed
2014-08-13 1:17 ` Fabio Estevam
@ 2014-08-13 6:49 ` Randy Dunlap
0 siblings, 0 replies; 6+ messages in thread
From: Randy Dunlap @ 2014-08-13 6:49 UTC (permalink / raw)
To: Fabio Estevam
Cc: Linus Torvalds, Masanari Iida, Jim Davis, dri-devel, LKML,
David Airlie
On 08/12/14 18:17, Fabio Estevam wrote:
> On Tue, Aug 12, 2014 at 2:30 PM, Randy Dunlap <rdunlap@infradead.org> wrote:
>> This patch fixed 'make xmldocs' failed on linus's tree and
>> linux-next as of 8th/Aug,2014.
>>
>> When drm merge for 3.17-rc1 happen, a file was renamed from
>> drm_stub.c to drm_drv.c.
>> But Documentation/DocBook/drm.tmpl still have an old file name.
>>
>> Signed-off-by: Masanari Iida <standby24x7@gmail.com>
>> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
>
> Isn't the From field missing to indicate Masanari's authorship of this patch?
Hm, yes, I'm afraid that it is. Sorry about that.
If Linus doesn't merge it, I'll add it to my patch queue or David Airlie
can do that as well.
Thanks.
--
~Randy
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Documentation: DocBook: Rename drm_stub.c to drm_drv.c cause 'make xmldocs' failed
2014-08-08 19:16 [PATCH] Documentation: DocBook: Rename drm_stub.c to drm_drv.c cause 'make xmldocs' failed Masanari Iida
2014-08-11 5:57 ` Randy Dunlap
2014-08-12 17:30 ` Randy Dunlap
@ 2014-08-13 20:56 ` Randy Dunlap
2 siblings, 0 replies; 6+ messages in thread
From: Randy Dunlap @ 2014-08-13 20:56 UTC (permalink / raw)
To: Masanari Iida, airlied, dri-devel, linux-kernel
On 08/08/14 12:16, Masanari Iida wrote:
> This patch fixed 'make xmldocs' failed on linus's tree and
> linux-next as of 8th/Aug,2014.
>
> When drm merge for 3.17-rc1 happen, a file was renamed from
> drm_stub.c to drm_drv.c.
> But Documentation/DocBook/drm.tmpl still have an old file name.
>
> Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Applied to my patch queue. Thanks.
> ---
> Documentation/DocBook/drm.tmpl | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/DocBook/drm.tmpl b/Documentation/DocBook/drm.tmpl
> index 1d3756d..bacefc5 100644
> --- a/Documentation/DocBook/drm.tmpl
> +++ b/Documentation/DocBook/drm.tmpl
> @@ -315,7 +315,7 @@ char *date;</synopsis>
> <function>drm_dev_unregister()</function> followed by a call to
> <function>drm_dev_unref()</function>.
> </para>
> -!Edrivers/gpu/drm/drm_stub.c
> +!Edrivers/gpu/drm/drm_drv.c
> </sect2>
> <sect2>
> <title>Driver Load</title>
>
--
~Randy
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-08-13 20:56 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-08 19:16 [PATCH] Documentation: DocBook: Rename drm_stub.c to drm_drv.c cause 'make xmldocs' failed Masanari Iida
2014-08-11 5:57 ` Randy Dunlap
2014-08-12 17:30 ` Randy Dunlap
2014-08-13 1:17 ` Fabio Estevam
2014-08-13 6:49 ` Randy Dunlap
2014-08-13 20:56 ` Randy Dunlap
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).