diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2008-04-30 03:53:56 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-30 11:29:44 -0400 |
commit | cd989b3a8c30148c872c7677c7a0415584f1658c (patch) | |
tree | 9f6253b744c195866f6f24a75de6268383cf228f | |
parent | 15ed6cc0ba6b7beaf31c6756b0c838188800051b (diff) |
cyclades: use ioremap_nocache for clarity as proposed
Signed-off-by: Alan Cox <alan@redhat.com>
Acked-by: Jiri Slaby <jirislaby@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/char/cyclades.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/cyclades.c b/drivers/char/cyclades.c index ba795c757db0..e61939d3331d 100644 --- a/drivers/char/cyclades.c +++ b/drivers/char/cyclades.c | |||
@@ -4556,7 +4556,7 @@ static int __init cy_detect_isa(void) | |||
4556 | return nboard; | 4556 | return nboard; |
4557 | 4557 | ||
4558 | /* probe for CD1400... */ | 4558 | /* probe for CD1400... */ |
4559 | cy_isa_address = ioremap(isa_address, CyISA_Ywin); | 4559 | cy_isa_address = ioremap_nocache(isa_address, CyISA_Ywin); |
4560 | if (cy_isa_address == NULL) { | 4560 | if (cy_isa_address == NULL) { |
4561 | printk(KERN_ERR "Cyclom-Y/ISA: can't remap base " | 4561 | printk(KERN_ERR "Cyclom-Y/ISA: can't remap base " |
4562 | "address\n"); | 4562 | "address\n"); |