diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2008-06-30 08:11:22 +0900 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-06-30 10:52:40 +0200 |
commit | 44974c8fc1d7047abe414562e0782320f4c1f511 (patch) | |
tree | 487e6abe502e6c67a0d7aa7263ecc35efce296d7 | |
parent | fa3d319ac6f648dc51cb672a31f482c80a8c2457 (diff) |
x86 gart: remove unnecessary set_bit_string
iommu_area_alloc internally calls set_bit_string and set bits
properly. This set_bit_string is unnecessary.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Cc: joerg.roedel@amd.com
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | arch/x86/kernel/pci-gart_64.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/kernel/pci-gart_64.c b/arch/x86/kernel/pci-gart_64.c index f20c20a7853d..021f3c684a62 100644 --- a/arch/x86/kernel/pci-gart_64.c +++ b/arch/x86/kernel/pci-gart_64.c @@ -104,7 +104,6 @@ static unsigned long alloc_iommu(struct device *dev, int size) size, base_index, boundary_size, 0); } if (offset != -1) { - set_bit_string(iommu_gart_bitmap, offset, size); next_bit = offset+size; if (next_bit >= iommu_pages) { next_bit = 0; |