Commit cd989b3a authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds

cyclades: use ioremap_nocache for clarity as proposed

Signed-off-by: default avatarAlan Cox <alan@redhat.com>
Acked-by: default avatarJiri Slaby <jirislaby@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 15ed6cc0
...@@ -4556,7 +4556,7 @@ static int __init cy_detect_isa(void) ...@@ -4556,7 +4556,7 @@ static int __init cy_detect_isa(void)
return nboard; return nboard;
/* probe for CD1400... */ /* probe for CD1400... */
cy_isa_address = ioremap(isa_address, CyISA_Ywin); cy_isa_address = ioremap_nocache(isa_address, CyISA_Ywin);
if (cy_isa_address == NULL) { if (cy_isa_address == NULL) {
printk(KERN_ERR "Cyclom-Y/ISA: can't remap base " printk(KERN_ERR "Cyclom-Y/ISA: can't remap base "
"address\n"); "address\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment