diff options
author | Tobin C. Harding <me@tobin.cc> | 2017-12-20 08:17:15 +1100 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2017-12-21 13:39:07 -0700 |
commit | b3ed23213eab1e08be594ad44b4237588c58af09 (patch) | |
tree | 535a4c3ab48598e57bd938eaaff90b39558e56fe /lib | |
parent | 2a7c7cba38f4176af081de74e82b61aeae4feaa1 (diff) | |
download | linux-b3ed23213eab1e08be594ad44b4237588c58af09.tar.gz linux-b3ed23213eab1e08be594ad44b4237588c58af09.tar.bz2 linux-b3ed23213eab1e08be594ad44b4237588c58af09.zip |
doc: convert printk-formats.txt to rst
Documentation/printk-formats.txt is a candidate for conversion to
ReStructuredText format. Some effort has already been made to do this
conversion even thought the suffix is currently .txt
Changes required to complete conversion
- Move printk-formats.txt to core-api/printk-formats.rst
- Add entry to Documentation/core-api/index.rst
- Remove entry from Documentation/00-INDEX
- Fix minor grammatical errors.
- Order heading adornments as suggested by rst docs.
- Use 'Passed by reference' uniformly.
- Update pointer documentation around %px specifier.
- Fix erroneous double backticks (to commas).
- Remove extraneous double backticks (suggested by Jonathan Corbet).
- Simplify documentation for kobject.
Signed-off-by: Tobin C. Harding <me@tobin.cc>
[jc: downcased "kernel"]
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/vsprintf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/vsprintf.c b/lib/vsprintf.c index 01c3957b2de6..6ec0844ab5d1 100644 --- a/lib/vsprintf.c +++ b/lib/vsprintf.c @@ -1834,7 +1834,8 @@ static char *ptr_to_id(char *buf, char *end, void *ptr, struct printf_spec spec) * * - 'x' For printing the address. Equivalent to "%lx". * - * ** Please update also Documentation/printk-formats.txt when making changes ** + * ** When making changes please also update: + * Documentation/core-api/printk-formats.rst * * Note: The difference between 'S' and 'F' is that on ia64 and ppc64 * function pointers are really function descriptors, which contain a |