forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-05-11 04dd17822334871b23ea2862f7798fb0e0007777
kernel/arch/microblaze/include/asm/io.h
....@@ -1,11 +1,8 @@
1
+/* SPDX-License-Identifier: GPL-2.0 */
12 /*
23 * Copyright (C) 2007-2009 Michal Simek <monstr@monstr.eu>
34 * Copyright (C) 2007-2009 PetaLogix
45 * 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.
96 */
107
118 #ifndef _ASM_MICROBLAZE_IO_H
....@@ -39,10 +36,6 @@
3936 extern void iounmap(volatile void __iomem *addr);
4037
4138 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))
4639
4740 #endif /* CONFIG_MMU */
4841