diff options
Diffstat (limited to 'drivers/serial/8250_early.c')
-rw-r--r-- | drivers/serial/8250_early.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/8250_early.c b/drivers/serial/8250_early.c index cd898704ba4f..f279745e9fef 100644 --- a/drivers/serial/8250_early.c +++ b/drivers/serial/8250_early.c | |||
@@ -153,7 +153,7 @@ static int __init parse_options(struct early_serial8250_device *device, | |||
153 | (void __iomem *)__fix_to_virt(FIX_EARLYCON_MEM_BASE); | 153 | (void __iomem *)__fix_to_virt(FIX_EARLYCON_MEM_BASE); |
154 | port->membase += port->mapbase & ~PAGE_MASK; | 154 | port->membase += port->mapbase & ~PAGE_MASK; |
155 | #else | 155 | #else |
156 | port->membase = ioremap(port->mapbase, 64); | 156 | port->membase = ioremap_nocache(port->mapbase, 64); |
157 | if (!port->membase) { | 157 | if (!port->membase) { |
158 | printk(KERN_ERR "%s: Couldn't ioremap 0x%llx\n", | 158 | printk(KERN_ERR "%s: Couldn't ioremap 0x%llx\n", |
159 | __func__, | 159 | __func__, |