Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=43bed127376ff2ef9c268cf6688a43d0fbed2ff4
Commit:     43bed127376ff2ef9c268cf6688a43d0fbed2ff4
Parent:     28f57e774d91ce01e03ff65caa2313bc8786b66f
Author:     David S. Miller <[EMAIL PROTECTED]>
AuthorDate: Wed Mar 14 18:33:49 2007 -0700
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Thu Apr 26 01:55:21 2007 -0700

    [SPARC64]: Use DECLARE_BITMAP in struct pci_iommu.
    
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 include/asm-sparc64/pbm.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/asm-sparc64/pbm.h b/include/asm-sparc64/pbm.h
index 3a811c2..9afcc06 100644
--- a/include/asm-sparc64/pbm.h
+++ b/include/asm-sparc64/pbm.h
@@ -78,7 +78,7 @@ struct pci_iommu {
 
        /* CTX allocation. */
        unsigned long ctx_lowest_free;
-       unsigned long ctx_bitmap[IOMMU_NUM_CTXS / (sizeof(unsigned long) * 8)];
+       DECLARE_BITMAP(ctx_bitmap, IOMMU_NUM_CTXS);
 
        /* Here a PCI controller driver describes the areas of
         * PCI memory space where DMA to/from physical memory
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to