All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH mini-os] Correct printf formatting for tpm_tis message.
@ 2015-06-26 10:58 Ian Campbell
  2015-06-26 11:06 ` [PATCH xen] stubdom: vtpmmgr: Correctly format size_t with %z when printing Ian Campbell
  2015-07-02  0:21 ` [PATCH mini-os] Correct printf formatting for tpm_tis message Samuel Thibault
  0 siblings, 2 replies; 7+ messages in thread
From: Ian Campbell @ 2015-06-26 10:58 UTC (permalink / raw)
  To: minios-devel
  Cc: samuel.thibault, Daniel De Graaf, Thomas Leonard, Ian Campbell,
	xen-devel

This is under #ifdef HAVE_LIBC so went unnoticed before.

Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
---
 tpm_tis.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tpm_tis.c b/tpm_tis.c
index 98fe837..475ac5d 100644
--- a/tpm_tis.c
+++ b/tpm_tis.c
@@ -1429,7 +1429,7 @@ struct tpm_chip* init_tpm2_tis(unsigned long baseaddr, int localities, unsigned
 
             /* Map the page in now */
             if ((tpm->pages[i] = ioremap_nocache(addr, PAGE_SIZE)) == NULL) {
-                printk("Unable to map iomem page a address %p\n", addr);
+                printk("Unable to map iomem page a address %lx\n", addr);
                 goto abort_egress;
             }
 
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2015-07-03 10:36 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-26 10:58 [PATCH mini-os] Correct printf formatting for tpm_tis message Ian Campbell
2015-06-26 11:06 ` [PATCH xen] stubdom: vtpmmgr: Correctly format size_t with %z when printing Ian Campbell
2015-07-02  0:23   ` Samuel Thibault
2015-07-02  9:04     ` Ian Campbell
2015-07-03 10:36     ` Ian Campbell
2015-07-02  0:21 ` [PATCH mini-os] Correct printf formatting for tpm_tis message Samuel Thibault
2015-07-03  9:29   ` Ian Campbell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.