Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=378a545954abfec1c9499203206e0ffb5c2118d2
Commit:     378a545954abfec1c9499203206e0ffb5c2118d2
Parent:     e2a57a815933b2d2e375f9de6be223098024ab90
Author:     Giuseppe Sacco <[EMAIL PROTECTED]>
AuthorDate: Sat Oct 6 19:55:03 2007 +0200
Committer:  Ralf Baechle <[EMAIL PROTECTED]>
CommitDate: Tue Oct 9 12:47:48 2007 +0100

    [MIPS] IP32: Fix fatal typo in address computation.
    
    Signed-off-by: Giuseppe Sacco <[EMAIL PROTECTED]>
    Signed-off-by: Ralf Baechle <[EMAIL PROTECTED]>
---
 arch/mips/pci/ops-mace.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/mips/pci/ops-mace.c b/arch/mips/pci/ops-mace.c
index 2025f1f..fe54514 100644
--- a/arch/mips/pci/ops-mace.c
+++ b/arch/mips/pci/ops-mace.c
@@ -33,7 +33,7 @@ static inline int mkaddr(struct pci_bus *bus, unsigned int 
devfn,
        unsigned int reg)
 {
        return ((bus->number & 0xff) << 16) |
-               (devfn & 0xff) << 8) |
+               ((devfn & 0xff) << 8) |
                (reg & 0xfc);
 }
 
-
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