diff options
author | Muli Ben-Yehuda <muli@il.ibm.com> | 2007-07-21 11:11:00 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-21 21:37:11 -0400 |
commit | 8bcf77055cc88228263f936b2ecf69c017906cb2 (patch) | |
tree | 4f030994c7b98c143eb57742c13dffd5e50f24b5 /arch/x86_64 | |
parent | 05b48ea61c900115add991427f52ee5eacf361a8 (diff) |
x86_64: tabify and trim trailing whitespace
Signed-off-by: Muli Ben-Yehuda <muli@il.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/x86_64')
-rw-r--r-- | arch/x86_64/kernel/pci-calgary.c | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/arch/x86_64/kernel/pci-calgary.c b/arch/x86_64/kernel/pci-calgary.c index 6f5b9f88e7aa..22c2d6250bff 100644 --- a/arch/x86_64/kernel/pci-calgary.c +++ b/arch/x86_64/kernel/pci-calgary.c | |||
@@ -75,9 +75,9 @@ int use_calgary __read_mostly = 0; | |||
75 | #define PHB_DOSHOLE_OFFSET 0x08E0 | 75 | #define PHB_DOSHOLE_OFFSET 0x08E0 |
76 | 76 | ||
77 | /* CalIOC2 specific */ | 77 | /* CalIOC2 specific */ |
78 | #define PHB_SAVIOR_L2 0x0DB0 | 78 | #define PHB_SAVIOR_L2 0x0DB0 |
79 | #define PHB_PAGE_MIG_CTRL 0x0DA8 | 79 | #define PHB_PAGE_MIG_CTRL 0x0DA8 |
80 | #define PHB_PAGE_MIG_DEBUG 0x0DA0 | 80 | #define PHB_PAGE_MIG_DEBUG 0x0DA0 |
81 | #define PHB_ROOT_COMPLEX_STATUS 0x0CB0 | 81 | #define PHB_ROOT_COMPLEX_STATUS 0x0CB0 |
82 | 82 | ||
83 | /* PHB_CONFIG_RW */ | 83 | /* PHB_CONFIG_RW */ |
@@ -92,11 +92,11 @@ int use_calgary __read_mostly = 0; | |||
92 | /* CSR (Channel/DMA Status Register) */ | 92 | /* CSR (Channel/DMA Status Register) */ |
93 | #define CSR_AGENT_MASK 0xffe0ffff | 93 | #define CSR_AGENT_MASK 0xffe0ffff |
94 | /* CCR (Calgary Configuration Register) */ | 94 | /* CCR (Calgary Configuration Register) */ |
95 | #define CCR_2SEC_TIMEOUT 0x000000000000000EUL | 95 | #define CCR_2SEC_TIMEOUT 0x000000000000000EUL |
96 | /* PMCR/PMDR (Page Migration Control/Debug Registers */ | 96 | /* PMCR/PMDR (Page Migration Control/Debug Registers */ |
97 | #define PMR_SOFTSTOP 0x80000000 | 97 | #define PMR_SOFTSTOP 0x80000000 |
98 | #define PMR_SOFTSTOPFAULT 0x40000000 | 98 | #define PMR_SOFTSTOPFAULT 0x40000000 |
99 | #define PMR_HARDSTOP 0x20000000 | 99 | #define PMR_HARDSTOP 0x20000000 |
100 | 100 | ||
101 | #define MAX_NUM_OF_PHBS 8 /* how many PHBs in total? */ | 101 | #define MAX_NUM_OF_PHBS 8 /* how many PHBs in total? */ |
102 | #define MAX_NUM_CHASSIS 8 /* max number of chassis */ | 102 | #define MAX_NUM_CHASSIS 8 /* max number of chassis */ |
@@ -228,7 +228,7 @@ static inline int translate_phb(struct pci_dev* dev) | |||
228 | } | 228 | } |
229 | 229 | ||
230 | static void iommu_range_reserve(struct iommu_table *tbl, | 230 | static void iommu_range_reserve(struct iommu_table *tbl, |
231 | unsigned long start_addr, unsigned int npages) | 231 | unsigned long start_addr, unsigned int npages) |
232 | { | 232 | { |
233 | unsigned long index; | 233 | unsigned long index; |
234 | unsigned long end; | 234 | unsigned long end; |
@@ -418,7 +418,7 @@ static int calgary_nontranslate_map_sg(struct device* dev, | |||
418 | { | 418 | { |
419 | int i; | 419 | int i; |
420 | 420 | ||
421 | for (i = 0; i < nelems; i++ ) { | 421 | for (i = 0; i < nelems; i++ ) { |
422 | struct scatterlist *s = &sg[i]; | 422 | struct scatterlist *s = &sg[i]; |
423 | BUG_ON(!s->page); | 423 | BUG_ON(!s->page); |
424 | s->dma_address = virt_to_bus(page_address(s->page) +s->offset); | 424 | s->dma_address = virt_to_bus(page_address(s->page) +s->offset); |
@@ -838,12 +838,12 @@ static int __init calgary_setup_tar(struct pci_dev *dev, void __iomem *bbar) | |||
838 | tbl->it_base = (unsigned long)bus_info[dev->bus->number].tce_space; | 838 | tbl->it_base = (unsigned long)bus_info[dev->bus->number].tce_space; |
839 | tce_free(tbl, 0, tbl->it_size); | 839 | tce_free(tbl, 0, tbl->it_size); |
840 | 840 | ||
841 | if (is_calgary(dev->device)) | 841 | if (is_calgary(dev->device)) |
842 | tbl->chip_ops = &calgary_chip_ops; | 842 | tbl->chip_ops = &calgary_chip_ops; |
843 | else if (is_calioc2(dev->device)) | 843 | else if (is_calioc2(dev->device)) |
844 | tbl->chip_ops = &calioc2_chip_ops; | 844 | tbl->chip_ops = &calioc2_chip_ops; |
845 | else | 845 | else |
846 | BUG(); | 846 | BUG(); |
847 | 847 | ||
848 | calgary_reserve_regions(dev); | 848 | calgary_reserve_regions(dev); |
849 | 849 | ||
@@ -1025,13 +1025,13 @@ static void calioc2_handle_quirks(struct iommu_table *tbl, struct pci_dev *dev) | |||
1025 | void __iomem *target; | 1025 | void __iomem *target; |
1026 | u32 val; | 1026 | u32 val; |
1027 | 1027 | ||
1028 | /* | 1028 | /* |
1029 | * CalIOC2 designers recommend setting bit 8 in 0xnDB0 to 1 | 1029 | * CalIOC2 designers recommend setting bit 8 in 0xnDB0 to 1 |
1030 | */ | 1030 | */ |
1031 | target = calgary_reg(bbar, phb_offset(busnum) | PHB_SAVIOR_L2); | 1031 | target = calgary_reg(bbar, phb_offset(busnum) | PHB_SAVIOR_L2); |
1032 | val = cpu_to_be32(readl(target)); | 1032 | val = cpu_to_be32(readl(target)); |
1033 | val |= 0x00800000; | 1033 | val |= 0x00800000; |
1034 | writel(cpu_to_be32(val), target); | 1034 | writel(cpu_to_be32(val), target); |
1035 | } | 1035 | } |
1036 | 1036 | ||
1037 | static void calgary_handle_quirks(struct iommu_table *tbl, struct pci_dev *dev) | 1037 | static void calgary_handle_quirks(struct iommu_table *tbl, struct pci_dev *dev) |