| To: | linux-mips@linux-mips.org |
|---|---|
| Subject: | [PATCH 1/3] Fix accesses to device registers on MIPS boards |
| From: | Raghu Gandham <raghu@mips.com> |
| Date: | Fri, 10 Jul 2009 01:53:54 -0700 |
| Cc: | raghu@mips.com, chris@mips.com |
| In-reply-to: | <20090710085338.25918.37597.stgit@linux-raghu> |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| References: | <20090710085338.25918.37597.stgit@linux-raghu> |
| Sender: | linux-mips-bounce@linux-mips.org |
| User-agent: | StGIT/0.14.3 |
From: Chris Dearman <chris@mips.com>
This fixes the remaining problems introduced by
f197465384bf7ef1af184c2ed1a4e268911a91e3 (incorrect access length &
byteswapping in bigendian mode)
Signed-off-by: Chris Dearman (chris@mips.com)
---
arch/mips/mti-malta/malta-int.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/mips/mti-malta/malta-int.c b/arch/mips/mti-malta/malta-int.c
index 3e0a9b3..e568d0d 100644
--- a/arch/mips/mti-malta/malta-int.c
+++ b/arch/mips/mti-malta/malta-int.c
@@ -87,7 +87,7 @@ static inline int mips_pcibios_iack(void)
dummy = BONITO_PCIMAP_CFG;
iob(); /* sync */
- irq = readl((u32 *)_pcictrl_bonito_pcicfg);
+ irq = __raw_readl((u32 *)_pcictrl_bonito_pcicfg);
iob(); /* sync */
irq &= 0xff;
BONITO_PCIMAP_CFG = 0;
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH 0/3] Port malta interrupt changes (GIC, GCMP) from linux-mti, Raghu Gandham |
|---|---|
| Next by Date: | [PATCH 2/3] Port of GIC related changes from MTI branch., Raghu Gandham |
| Previous by Thread: | [PATCH 0/3] Port malta interrupt changes (GIC, GCMP) from linux-mti, Raghu Gandham |
| Next by Thread: | [PATCH 2/3] Port of GIC related changes from MTI branch., Raghu Gandham |
| Indexes: | [Date] [Thread] [Top] [All Lists] |