diff options
author | David S. Miller <davem@sunset.davemloft.net> | 2007-03-15 02:33:49 +0100 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 10:55:21 +0200 |
commit | 43bed127376ff2ef9c268cf6688a43d0fbed2ff4 (patch) | |
tree | 1241d2ae9d1d092688df43ffa5e67ec5fd5a83ca /include/asm-sparc64/pbm.h | |
parent | [SPARC64]: Force dummy host controller onto bus zero. (diff) | |
download | linux-43bed127376ff2ef9c268cf6688a43d0fbed2ff4.tar.xz linux-43bed127376ff2ef9c268cf6688a43d0fbed2ff4.zip |
[SPARC64]: Use DECLARE_BITMAP in struct pci_iommu.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r-- | 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 3a811c2cd3c2..9afcc06a575d 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 |