diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2008-09-24 09:41:10 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-09-25 05:02:27 -0400 |
commit | 1615965e54eb94d7bcd298d2163739bd79f602d4 (patch) | |
tree | 7777f6f7278f2abdded46307a33962657ab660a9 | |
parent | 1d990882153f36723f9e8717c4401689e64c7a36 (diff) |
x86 gart: remove unnecessary initialization
There is no point to have such initialization in struct dma_mapping_ops.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | arch/x86/kernel/pci-gart_64.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/arch/x86/kernel/pci-gart_64.c b/arch/x86/kernel/pci-gart_64.c index 25c94fb96d74..b85a2f9bb340 100644 --- a/arch/x86/kernel/pci-gart_64.c +++ b/arch/x86/kernel/pci-gart_64.c | |||
@@ -715,12 +715,6 @@ extern int agp_amd64_init(void); | |||
715 | static struct dma_mapping_ops gart_dma_ops = { | 715 | static struct dma_mapping_ops gart_dma_ops = { |
716 | .map_single = gart_map_single, | 716 | .map_single = gart_map_single, |
717 | .unmap_single = gart_unmap_single, | 717 | .unmap_single = gart_unmap_single, |
718 | .sync_single_for_cpu = NULL, | ||
719 | .sync_single_for_device = NULL, | ||
720 | .sync_single_range_for_cpu = NULL, | ||
721 | .sync_single_range_for_device = NULL, | ||
722 | .sync_sg_for_cpu = NULL, | ||
723 | .sync_sg_for_device = NULL, | ||
724 | .map_sg = gart_map_sg, | 718 | .map_sg = gart_map_sg, |
725 | .unmap_sg = gart_unmap_sg, | 719 | .unmap_sg = gart_unmap_sg, |
726 | .alloc_coherent = gart_alloc_coherent, | 720 | .alloc_coherent = gart_alloc_coherent, |