| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0 */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Copyright (C) 2007-2009 Michal Simek <monstr@monstr.eu> |
|---|
| 3 | 4 | * Copyright (C) 2007-2009 PetaLogix |
|---|
| 4 | 5 | * Copyright (C) 2006 Atmark Techno, Inc. |
|---|
| 5 | | - * |
|---|
| 6 | | - * This file is subject to the terms and conditions of the GNU General Public |
|---|
| 7 | | - * License. See the file "COPYING" in the main directory of this archive |
|---|
| 8 | | - * for more details. |
|---|
| 9 | 6 | */ |
|---|
| 10 | 7 | |
|---|
| 11 | 8 | #ifndef _ASM_MICROBLAZE_IO_H |
|---|
| .. | .. |
|---|
| 39 | 36 | extern void iounmap(volatile void __iomem *addr); |
|---|
| 40 | 37 | |
|---|
| 41 | 38 | extern void __iomem *ioremap(phys_addr_t address, unsigned long size); |
|---|
| 42 | | -#define ioremap_nocache(addr, size) ioremap((addr), (size)) |
|---|
| 43 | | -#define ioremap_fullcache(addr, size) ioremap((addr), (size)) |
|---|
| 44 | | -#define ioremap_wc(addr, size) ioremap((addr), (size)) |
|---|
| 45 | | -#define ioremap_wt(addr, size) ioremap((addr), (size)) |
|---|
| 46 | 39 | |
|---|
| 47 | 40 | #endif /* CONFIG_MMU */ |
|---|
| 48 | 41 | |
|---|