Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7354b07595b2e43b75fe353fcf18e73eb0427c9b
Commit:     7354b07595b2e43b75fe353fcf18e73eb0427c9b
Parent:     12de257b83e2fa9343eb7cee70a6edc85b51fbc5
Author:     Muli Ben-Yehuda <[EMAIL PROTECTED]>
AuthorDate: Sat Jul 21 17:11:03 2007 +0200
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Sat Jul 21 18:37:11 2007 -0700

    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 <[EMAIL PROTECTED]> for telling me
    about checkpatch.pl.
    
    Signed-off-by: Muli Ben-Yehuda <[EMAIL PROTECTED]>
    Signed-off-by: Andi Kleen <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 arch/x86_64/kernel/pci-calgary.c |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/arch/x86_64/kernel/pci-calgary.c b/arch/x86_64/kernel/pci-calgary.c
index c88e70d..a2f9c53 100644
--- a/arch/x86_64/kernel/pci-calgary.c
+++ b/arch/x86_64/kernel/pci-calgary.c
@@ -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;
 }
@@ -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("[EMAIL PROTECTED] ", errregs[i], erroff);
@@ -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)
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to