docbook: fix printk of ip address
authorTobias Klauser <tklauser@distanz.ch>
Thu, 30 Jul 2009 20:10:50 +0000 (13:10 -0700)
committerDavid S. Miller <davem@davemloft.net>
Thu, 30 Jul 2009 20:10:50 +0000 (13:10 -0700)
Use the %pI4 format string instead of %d.%d.%d.%d and NIPQUAD.

Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Documentation/DocBook/kernel-hacking.tmpl

index a50d6cd..992e67e 100644 (file)
@@ -449,8 +449,8 @@ printk(KERN_INFO "i = %u\n", i);
    </para>
 
    <programlisting>
-__u32 ipaddress;
-printk(KERN_INFO "my ip: %d.%d.%d.%d\n", NIPQUAD(ipaddress));
+__be32 ipaddress;
+printk(KERN_INFO "my ip: %pI4\n", &amp;ipaddress);
    </programlisting>
 
    <para>