| .. | .. |
|---|
| 133 | 133 | if (win_len < (CS0_START + CS0_SIZE)) |
|---|
| 134 | 134 | return -ENXIO; |
|---|
| 135 | 135 | |
|---|
| 136 | | - p->csr_base = ioremap_nocache(csr_phys, csr_len); |
|---|
| 136 | + p->csr_base = ioremap(csr_phys, csr_len); |
|---|
| 137 | 137 | if (!p->csr_base) |
|---|
| 138 | 138 | return -ENOMEM; |
|---|
| 139 | 139 | |
|---|
| .. | .. |
|---|
| 152 | 152 | p->map.bankwidth = (exp_timing_cs0 & TIMING_BYTE_EN) ? 1 : 2; |
|---|
| 153 | 153 | p->map.phys = win_phys + CS0_START; |
|---|
| 154 | 154 | p->map.size = CS0_SIZE; |
|---|
| 155 | | - p->map.virt = ioremap_nocache(p->map.phys, p->map.size); |
|---|
| 155 | + p->map.virt = ioremap(p->map.phys, p->map.size); |
|---|
| 156 | 156 | if (!p->map.virt) { |
|---|
| 157 | 157 | err = -ENOMEM; |
|---|
| 158 | 158 | goto release; |
|---|