X-Git-Url: https://git.stricted.de/?a=blobdiff_plain;f=lib%2Fswiotlb.c;h=45bc1f83a5ada665297bc0b9dcd3a6ad72e2ec72;hb=e6f0f4546a2027fc6bdb9223e5f3fde431587f5d;hp=414f46ed1dcda9ae63be846cc6cf6e1b9bb7bb2e;hpb=8ca038dc10eec80f280d9d483f1835ac2763a787;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git diff --git a/lib/swiotlb.c b/lib/swiotlb.c index 414f46ed1dcd..45bc1f83a5ad 100644 --- a/lib/swiotlb.c +++ b/lib/swiotlb.c @@ -130,11 +130,9 @@ void swiotlb_print_info(void) pstart = virt_to_phys(io_tlb_start); pend = virt_to_phys(io_tlb_end); - printk(KERN_INFO "Placing %luMB software IO TLB between %p - %p\n", - bytes >> 20, io_tlb_start, io_tlb_end); - printk(KERN_INFO "software IO TLB at phys %#llx - %#llx\n", - (unsigned long long)pstart, - (unsigned long long)pend); + printk(KERN_INFO "software IO TLB [mem %#010llx-%#010llx] (%luMB) mapped at [%p-%p]\n", + (unsigned long long)pstart, (unsigned long long)pend - 1, + bytes >> 20, io_tlb_start, io_tlb_end - 1); } void __init swiotlb_init_with_tbl(char *tlb, unsigned long nslabs, int verbose)