cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

early_ioremap.h (428B)


      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