| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * BIOS Flash chip on Intel 440GX board. |
|---|
| 3 | 4 | * |
|---|
| .. | .. |
|---|
| 77 | 78 | return -ENODEV; |
|---|
| 78 | 79 | } |
|---|
| 79 | 80 | |
|---|
| 80 | | - l440gx_map.virt = ioremap_nocache(WINDOW_ADDR, WINDOW_SIZE); |
|---|
| 81 | + l440gx_map.virt = ioremap(WINDOW_ADDR, WINDOW_SIZE); |
|---|
| 81 | 82 | |
|---|
| 82 | 83 | if (!l440gx_map.virt) { |
|---|
| 83 | 84 | printk(KERN_WARNING "Failed to ioremap L440GX flash region\n"); |
|---|
| .. | .. |
|---|
| 85 | 86 | return -ENOMEM; |
|---|
| 86 | 87 | } |
|---|
| 87 | 88 | simple_map_init(&l440gx_map); |
|---|
| 88 | | - printk(KERN_NOTICE "window_addr = 0x%08lx\n", (unsigned long)l440gx_map.virt); |
|---|
| 89 | + pr_debug("window_addr = %p\n", l440gx_map.virt); |
|---|
| 89 | 90 | |
|---|
| 90 | 91 | /* Setup the pm iobase resource |
|---|
| 91 | 92 | * This code should move into some kind of generic bridge |
|---|