Linux Audio

Check our new training course

Loading...
Note: File does not exist in v6.8.
 1/* SPDX-License-Identifier: GPL-2.0 */
 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