]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
doc: printk-formats: do not mention casts for u64/s64
authorIlya Dryomov <ilya.dryomov@inktank.com>
Mon, 7 Apr 2014 09:43:52 +0000 (13:43 +0400)
committerJiri Kosina <jkosina@suse.cz>
Mon, 5 May 2014 13:32:42 +0000 (15:32 +0200)
Do not mention casts for u64/s64.  Complements commit 2a7930bd77fe
("Documentation/printk-formats.txt: No casts needed for u64/s64").

Signed-off-by: Ilya Dryomov <ilya.dryomov@inktank.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Documentation/printk-formats.txt

index 6f4eb322ffafe817f269dbf84c7cfa5bc3926e77..b4498218c4744213bbe57609c7532fa4bd64bd54 100644 (file)
@@ -199,11 +199,11 @@ struct va_format:
        Do not use this feature without some mechanism to verify the
        correctness of the format string and va_list arguments.
 
-u64 SHOULD be printed with %llu/%llx, (unsigned long long):
+u64 SHOULD be printed with %llu/%llx:
 
        printk("%llu", u64_var);
 
-s64 SHOULD be printed with %lld/%llx, (long long):
+s64 SHOULD be printed with %lld/%llx:
 
        printk("%lld", s64_var);