arm: remove unnecessarily verbose print from p2m_load_VTTBR
authorIan Campbell <ian.campbell@citrix.com>
Tue, 26 Jun 2012 15:23:50 +0000 (16:23 +0100)
committerIan Campbell <ian.campbell@citrix.com>
Tue, 26 Jun 2012 15:23:50 +0000 (16:23 +0100)
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Committed-by: Ian Campbell <ian.campbell@citrix.com>
xen/arch/arm/p2m.c

index ea385a6fc921dc4b9438a76026ed5b53b1a0be3c..6df5b6255c573e38dfe2e1ca43a0c22be5d7b7b3 100644 (file)
@@ -28,8 +28,6 @@ void p2m_load_VTTBR(struct domain *d)
 
     vttbr |= ((uint64_t)p2m->vmid&0xff)<<48;
 
-    printk("VTTBR dom%d = %"PRIx64"\n", d->domain_id, vttbr);
-
     WRITE_CP64(vttbr, VTTBR);
     isb(); /* Ensure update is visible */
 }