Linux MIPS Architecture development
 help / color / mirror / Atom feed
* Au1000 PCMCIA I/O space?
@ 2005-08-01  6:16 Ilya A. Volynets-Evenbakh
  2005-08-01  6:31 ` Pete Popov
  0 siblings, 1 reply; 3+ messages in thread
From: Ilya A. Volynets-Evenbakh @ 2005-08-01  6:16 UTC (permalink / raw)
  To: linux-mips

[-- Attachment #1: Type: text/plain, Size: 276 bytes --]

Is there any particular reason why Au1000 PCMCIA IO space is not 
included in 36-bit address fixup?
Attached patch fixes it for me, but I'm wondering if there is valid 
reason not to do that.

-- 
Ilya A. Volynets-Evenbakh
Total Knowledge. CTO
http://www.total-knowledge.com


[-- Attachment #2: pcmcia.diff --]
[-- Type: text/x-patch, Size: 648 bytes --]

Index: arch/mips/au1000/common/setup.c
===================================================================
RCS file: /home/cvs/linux/arch/mips/au1000/common/setup.c,v
retrieving revision 1.25
diff -u -r1.25 setup.c
--- arch/mips/au1000/common/setup.c	11 Jul 2005 10:03:23 -0000	1.25
+++ arch/mips/au1000/common/setup.c	1 Aug 2005 04:18:40 -0000
@@ -179,7 +179,7 @@
 	 * The pseudo address we use is 0xF400 0000. Any address over
 	 * 0xF400 0000 is a pcmcia pseudo address.
 	 */
-	if ((phys_addr >= 0xF4000000) && (phys_addr < 0xFFFFFFFF)) {
+	if ((phys_addr >= 0xF0000000) && (phys_addr < 0xFFFFFFFF)) {
 		return (phys_t)(phys_addr << 4);
 	}
 

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-08-01 19:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-08-01  6:16 Au1000 PCMCIA I/O space? Ilya A. Volynets-Evenbakh
2005-08-01  6:31 ` Pete Popov
2005-08-01 19:08   ` Ilya A. Volynets-Evenbakh

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox