sparc64: remove unused calc_npages() in iommu_common.h

Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by FUJITA Tomonori and committed by David S. Miller c819914e f0880257

-13
-13
arch/sparc64/kernel/iommu_common.h
··· 46 46 return npages; 47 47 } 48 48 49 - static inline unsigned long calc_npages(struct scatterlist *sglist, int nelems) 50 - { 51 - unsigned long i, npages = 0; 52 - struct scatterlist *sg; 53 - 54 - for_each_sg(sglist, sg, nelems, i) { 55 - unsigned long paddr = SG_ENT_PHYS_ADDRESS(sg); 56 - npages += iommu_num_pages(paddr, sg->length); 57 - } 58 - 59 - return npages; 60 - } 61 - 62 49 static inline int is_span_boundary(unsigned long entry, 63 50 unsigned long shift, 64 51 unsigned long boundary_size,