License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6/btrfs-unstable.git] / arch / ia64 / include / asm / early_ioremap.h
blob934191b1e2e3eaa499e6f8e29e09e58cfb04cd0d
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_IA64_EARLY_IOREMAP_H
3 #define _ASM_IA64_EARLY_IOREMAP_H
5 extern void __iomem * early_ioremap (unsigned long phys_addr, unsigned long size);
6 #define early_memremap(phys_addr, size) early_ioremap(phys_addr, size)
8 extern void early_iounmap (volatile void __iomem *addr, unsigned long size);
9 #define early_memunmap(addr, size) early_iounmap(addr, size)
11 #endif