2013-04-01 16:42:32

by Kyle McMartin

[permalink] [raw]
Subject: [PATCH] DocBook/device-drivers.tmpl: fix 8250.c reference

htmldocs will fail, because device-drivers.tmpl references the
non-existant file 8250.c (which got renamed to 8250_core.c)

Signed-off-by: Kyle McMartin <[email protected]>

--- a/Documentation/DocBook/device-drivers.tmpl
+++ b/Documentation/DocBook/device-drivers.tmpl
@@ -227,7 +227,7 @@ X!Isound/sound_firmware.c
<chapter id="uart16x50">
<title>16x50 UART Driver</title>
!Edrivers/tty/serial/serial_core.c
-!Edrivers/tty/serial/8250/8250.c
+!Edrivers/tty/serial/8250/8250_core.c
</chapter>

<chapter id="fbdev">


2013-04-01 17:11:36

by Randy Dunlap

[permalink] [raw]
Subject: Re: [PATCH] DocBook/device-drivers.tmpl: fix 8250.c reference

On 04/01/13 09:42, Kyle McMartin wrote:
> htmldocs will fail, because device-drivers.tmpl references the
> non-existant file 8250.c (which got renamed to 8250_core.c)
>

This is a fatal docbook error.

> Signed-off-by: Kyle McMartin <[email protected]>

Yes, I was about to make this same patch. Thanks.

Acked-by: Randy Dunlap <[email protected]>

>
> --- a/Documentation/DocBook/device-drivers.tmpl
> +++ b/Documentation/DocBook/device-drivers.tmpl
> @@ -227,7 +227,7 @@ X!Isound/sound_firmware.c
> <chapter id="uart16x50">
> <title>16x50 UART Driver</title>
> !Edrivers/tty/serial/serial_core.c
> -!Edrivers/tty/serial/8250/8250.c
> +!Edrivers/tty/serial/8250/8250_core.c
> </chapter>
>
> <chapter id="fbdev">
> --


--
~Randy