vsprintf.c (1e9a328e4b35af22c23ce9357c2c2a77159e74bb) vsprintf.c (b3ed23213eab1e08be594ad44b4237588c58af09)
1/*
2 * linux/lib/vsprintf.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7/* vsprintf.c -- Lars Wirzenius & Linus Torvalds. */
8/*

--- 1820 unchanged lines hidden (view full) ---

1829 * p device node phandle
1830 * P device node path spec (name + @unit)
1831 * F device node flags
1832 * c major compatible string
1833 * C full compatible string
1834 *
1835 * - 'x' For printing the address. Equivalent to "%lx".
1836 *
1/*
2 * linux/lib/vsprintf.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7/* vsprintf.c -- Lars Wirzenius & Linus Torvalds. */
8/*

--- 1820 unchanged lines hidden (view full) ---

1829 * p device node phandle
1830 * P device node path spec (name + @unit)
1831 * F device node flags
1832 * c major compatible string
1833 * C full compatible string
1834 *
1835 * - 'x' For printing the address. Equivalent to "%lx".
1836 *
1837 * ** Please update also Documentation/printk-formats.txt when making changes **
1837 * ** When making changes please also update:
1838 * Documentation/core-api/printk-formats.rst
1838 *
1839 * Note: The difference between 'S' and 'F' is that on ia64 and ppc64
1840 * function pointers are really function descriptors, which contain a
1841 * pointer to the real address.
1842 *
1843 * Note: The default behaviour (unadorned %p) is to hash the address,
1844 * rendering it useful as a unique identifier.
1845 */

--- 1285 unchanged lines hidden ---
1839 *
1840 * Note: The difference between 'S' and 'F' is that on ia64 and ppc64
1841 * function pointers are really function descriptors, which contain a
1842 * pointer to the real address.
1843 *
1844 * Note: The default behaviour (unadorned %p) is to hash the address,
1845 * rendering it useful as a unique identifier.
1846 */

--- 1285 unchanged lines hidden ---