diff mbox series

[v2,2/3] lib/vsprintf.c: remove stale comment

Message ID 20210527222046.1276246-3-rasmus.villemoes@prevas.dk
State Accepted
Commit ce452157e6a8b68b76cfc5e3d30f7d7b10ace575
Delegated to: Tom Rini
Headers show
Series trivial printf patches | expand

Commit Message

Rasmus Villemoes May 27, 2021, 10:20 p.m. UTC
U-Boot doesn't support %pS/%pF or any other kind of kallsyms-like
lookups. Remove the comment.

Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk>
---
 lib/vsprintf.c | 3 ---
 1 file changed, 3 deletions(-)

Comments

Tom Rini July 16, 2021, 3:52 p.m. UTC | #1
On Fri, May 28, 2021 at 12:20:45AM +0200, Rasmus Villemoes wrote:

> U-Boot doesn't support %pS/%pF or any other kind of kallsyms-like
> lookups. Remove the comment.
> 
> Reviewed-by: Simon Glass <sjg@chromium.org>
> Signed-off-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/lib/vsprintf.c b/lib/vsprintf.c
index cf3982eb03..af0a6e1dcf 100644
--- a/lib/vsprintf.c
+++ b/lib/vsprintf.c
@@ -434,9 +434,6 @@  static char *uuid_string(char *buf, char *end, u8 *addr, int field_width,
  * - 'i' [46] for 'raw' IPv4/IPv6 addresses, IPv6 omits the colons, IPv4 is
  *       currently the same
  *
- * Note: The difference between 'S' and 'F' is that on ia64 and ppc64
- * function pointers are really function descriptors, which contain a
- * pointer to the real address.
  */
 static char *pointer(const char *fmt, char *buf, char *end, void *ptr,
 		int field_width, int precision, int flags)