[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20090217165603.17657.11820.stgit@warthog.procyon.org.uk>
Date: Tue, 17 Feb 2009 16:56:03 +0000
From: David Howells <dhowells@...hat.com>
To: torvalds@...l.org, akpm@...ux-foundation.org
Cc: linux-am33-list@...hat.com, linux-kernel@...r.kernel.org,
Wei Yongjun <yjwei@...fujitsu.com>,
David Howells <dhowells@...hat.com>
Subject: [PATCH 3/3] MN10300: Fix typo && -> || in
arch/mn10300/unit-asb2305/pci.c
From: Wei Yongjun <yjwei@...fujitsu.com>
Fix the typo && -> ||.
Signed-off-by: Wei Yongjun <yjwei@...fujitsu.com>
Signed-off-by: David Howells <dhowells@...hat.com>
---
arch/mn10300/unit-asb2305/pci.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/mn10300/unit-asb2305/pci.c b/arch/mn10300/unit-asb2305/pci.c
index 1a86425..07dbbcd 100644
--- a/arch/mn10300/unit-asb2305/pci.c
+++ b/arch/mn10300/unit-asb2305/pci.c
@@ -173,7 +173,7 @@ static int pci_ampci_write_config_byte(struct pci_bus *bus, unsigned int devfn,
BRIDGEREGB(where) = value;
} else {
if (bus->number == 0 &&
- (devfn == PCI_DEVFN(2, 0) && devfn == PCI_DEVFN(3, 0))
+ (devfn == PCI_DEVFN(2, 0) || devfn == PCI_DEVFN(3, 0))
)
__pcidebug("<= %02x", bus, devfn, where, value);
CONFIG_ADDRESS = CONFIG_CMD(bus, devfn, where);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists