| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Support for the Tundra Universe I/II VME-PCI Bridge Chips |
|---|
| 3 | 4 | * |
|---|
| .. | .. |
|---|
| 8 | 9 | * Copyright 2004 Motorola Inc. |
|---|
| 9 | 10 | * |
|---|
| 10 | 11 | * Derived from ca91c042.c by Michael Wyrick |
|---|
| 11 | | - * |
|---|
| 12 | | - * This program is free software; you can redistribute it and/or modify it |
|---|
| 13 | | - * under the terms of the GNU General Public License as published by the |
|---|
| 14 | | - * Free Software Foundation; either version 2 of the License, or (at your |
|---|
| 15 | | - * option) any later version. |
|---|
| 16 | 12 | */ |
|---|
| 17 | 13 | |
|---|
| 18 | 14 | #include <linux/module.h> |
|---|
| .. | .. |
|---|
| 558 | 554 | goto err_resource; |
|---|
| 559 | 555 | } |
|---|
| 560 | 556 | |
|---|
| 561 | | - image->kern_base = ioremap_nocache( |
|---|
| 557 | + image->kern_base = ioremap( |
|---|
| 562 | 558 | image->bus_resource.start, size); |
|---|
| 563 | 559 | if (!image->kern_base) { |
|---|
| 564 | 560 | dev_err(ca91cx42_bridge->parent, "Failed to remap resource\n"); |
|---|
| .. | .. |
|---|
| 1642 | 1638 | } |
|---|
| 1643 | 1639 | |
|---|
| 1644 | 1640 | /* map registers in BAR 0 */ |
|---|
| 1645 | | - ca91cx42_device->base = ioremap_nocache(pci_resource_start(pdev, 0), |
|---|
| 1641 | + ca91cx42_device->base = ioremap(pci_resource_start(pdev, 0), |
|---|
| 1646 | 1642 | 4096); |
|---|
| 1647 | 1643 | if (!ca91cx42_device->base) { |
|---|
| 1648 | 1644 | dev_err(&pdev->dev, "Unable to remap CRG region\n"); |
|---|