x86_64: Calgary - fix few style problems pointed out by checkpatch.pl
No actual code was harmed in the production of this patch. Thanks to Andrew Morton <akpm@linux-foundation.org> for telling me about checkpatch.pl. Signed-off-by: Muli Ben-Yehuda <muli@il.ibm.com> Signed-off-by: Andi Kleen <ak@suse.de> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
12de257b83
commit
7354b07595
@ -375,7 +375,9 @@ static inline struct iommu_table *find_iommu_table(struct device *dev)
|
|||||||
pbus = pdev->bus;
|
pbus = pdev->bus;
|
||||||
|
|
||||||
tbl = pbus->self->sysdata;
|
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;
|
return tbl;
|
||||||
}
|
}
|
||||||
@ -941,7 +943,8 @@ static void calioc2_dump_error_regs(struct iommu_table *tbl)
|
|||||||
/* dump rest of error regs */
|
/* dump rest of error regs */
|
||||||
printk(KERN_EMERG "Calgary: ");
|
printk(KERN_EMERG "Calgary: ");
|
||||||
for (i = 0; i < ARRAY_SIZE(errregs); i++) {
|
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);
|
target = calgary_reg(bbar, phboff | erroff);
|
||||||
errregs[i] = be32_to_cpu(readl(target));
|
errregs[i] = be32_to_cpu(readl(target));
|
||||||
printk("0x%08x@0x%lx ", errregs[i], erroff);
|
printk("0x%08x@0x%lx ", errregs[i], erroff);
|
||||||
@ -1207,7 +1210,7 @@ static int __init calgary_init(void)
|
|||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
struct pci_dev *dev = NULL;
|
struct pci_dev *dev = NULL;
|
||||||
void* tce_space;
|
void *tce_space;
|
||||||
|
|
||||||
ret = calgary_locate_bbars();
|
ret = calgary_locate_bbars();
|
||||||
if (ret)
|
if (ret)
|
||||||
|
Loading…
Reference in New Issue
Block a user