Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 62417
b: refs/heads/master
c: 7354b07
h: refs/heads/master
i:
  62415: 443b845
v: v3
  • Loading branch information
Muli Ben-Yehuda authored and Linus Torvalds committed Jul 22, 2007
1 parent dc52ed7 commit e4d2fdb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 12de257b83e2fa9343eb7cee70a6edc85b51fbc5
refs/heads/master: 7354b07595b2e43b75fe353fcf18e73eb0427c9b
9 changes: 6 additions & 3 deletions trunk/arch/x86_64/kernel/pci-calgary.c
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,9 @@ static inline struct iommu_table *find_iommu_table(struct device *dev)
pbus = pdev->bus;

tbl = pbus->self->sysdata;
BUG_ON(pdev->bus->parent && (tbl->it_busno != pdev->bus->parent->number));

BUG_ON(pdev->bus->parent &&
(tbl->it_busno != pdev->bus->parent->number));

return tbl;
}
Expand Down Expand Up @@ -941,7 +943,8 @@ static void calioc2_dump_error_regs(struct iommu_table *tbl)
/* dump rest of error regs */
printk(KERN_EMERG "Calgary: ");
for (i = 0; i < ARRAY_SIZE(errregs); i++) {
erroff = (0x810 + (i * 0x10)); /* err regs are at 0x810 - 0x870 */
/* err regs are at 0x810 - 0x870 */
erroff = (0x810 + (i * 0x10));
target = calgary_reg(bbar, phboff | erroff);
errregs[i] = be32_to_cpu(readl(target));
printk("0x%08x@0x%lx ", errregs[i], erroff);
Expand Down Expand Up @@ -1207,7 +1210,7 @@ static int __init calgary_init(void)
{
int ret;
struct pci_dev *dev = NULL;
void* tce_space;
void *tce_space;

ret = calgary_locate_bbars();
if (ret)
Expand Down

0 comments on commit e4d2fdb

Please sign in to comment.