Fix "make doc".

Reported by Guus Sliepen:  "make doc" failed due to missing doctype,
unknown elements, and duplicate element IDs in libraw1394.sgml.

The fix is to declare a recent DTD (matching the one which is used
in current Linux kernel documentation docbooks) and to make the
conflicting element IDs unique.

The latter part of the fix is just temporary.  In order to avoid the
conflict when the documentation is updated the next time, also fix the
kerneldoc comments of the respective API elements:  These are typedefs,
hence kernel-doc needs their comments prepended by "typedef ".

Tested with Gentoo's docbook-xml-dtd 4.5, docbook-xsl-stylesheets
1.75.2, docbook-sgml-utils 0.6.14, and openjade 1.3.2-r1.

Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Signed-off-by: Dan Dennedy <dan@dennedy.org>
This commit is contained in:
Stefan Richter 2010-01-09 19:34:03 +01:00 committed by Dan Dennedy
parent 844a967b97
commit 6b7b3cbc1e
2 changed files with 12 additions and 16 deletions

View File

@ -1,6 +1,6 @@
<!--
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook V3.1//EN">
-->
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" []>
<book>
<bookinfo>
@ -3184,7 +3184,7 @@
</refsect1>
</refentry>
<refentry id="API-int">
<refentry id="API-req_callback_t">
<refentryinfo>
<title>LINUX</title>
<productname>Kernel Hackers Manual</productname>
@ -3231,7 +3231,7 @@
</refsect1>
</refentry>
<refentry id="API-int">
<refentry id="API-arm_req_callback_t">
<refentryinfo>
<title>LINUX</title>
<productname>Kernel Hackers Manual</productname>

View File

@ -699,12 +699,11 @@ typedef int (*fcp_handler_t)(raw1394handle_t, nodeid_t nodeid, int response,
fcp_handler_t raw1394_set_fcp_handler(raw1394handle_t handle, fcp_handler_t new_h);
/**
* req_callback_t - This is the general request handler
* @req_callback_t: This is the general request handler
* typedef req_callback_t - This is the general request handler
*
* It is used by the default tag handler
* when a request completes, it calls the callback and passes it the data
* pointer and the error code of the request.
* Used by the default tag handler. When a request completes, it calls
* the callback and passes it the libraw1394 handle, the data pointer,
* and the error code of the request.
**/
typedef int (*req_callback_t)(raw1394handle_t, void *data,
raw1394_errcode_t err);
@ -715,13 +714,10 @@ struct raw1394_reqhandle {
};
/**
* arm_req_callback_t - This is the general arm-request handle
* @arm_req_callback_t: This is the general arm-request handle
* @handle: libraw1394 handle
* typedef arm_req_callback_t - This is the general arm-request handle
*
* (arm = address range mapping)
* It is used by the default arm-tag handler when a request has been
* received, it calls the arm_callback.
* Used by the default arm-tag handler (arm = address range mapping).
* Called when a request has been received.
**/
typedef int (*arm_req_callback_t) (raw1394handle_t,
struct raw1394_arm_request_response *arm_req_resp,