Skip to content

Commit

Permalink
cyclades: use ioremap_nocache for clarity as proposed
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Alan Cox authored and Linus Torvalds committed Apr 30, 2008
1 parent 15ed6cc commit cd989b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/char/cyclades.c
Original file line number Diff line number Diff line change
Expand Up @@ -4556,7 +4556,7 @@ static int __init cy_detect_isa(void)
return nboard;

/* 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) {
printk(KERN_ERR "Cyclom-Y/ISA: can't remap base "
"address\n");
Expand Down

0 comments on commit cd989b3

Please sign in to comment.