]> git.ipfire.org Git - thirdparty/linux.git/blame - arch/ia64/include/asm/early_ioremap.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[thirdparty/linux.git] / arch / ia64 / include / asm / early_ioremap.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
80926770
AB
2#ifndef _ASM_IA64_EARLY_IOREMAP_H
3#define _ASM_IA64_EARLY_IOREMAP_H
4
5extern void __iomem * early_ioremap (unsigned long phys_addr, unsigned long size);
6#define early_memremap(phys_addr, size) early_ioremap(phys_addr, size)
7
8extern void early_iounmap (volatile void __iomem *addr, unsigned long size);
9#define early_memunmap(addr, size) early_iounmap(addr, size)
10
11#endif