mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-15 14:26:58 +00:00
Add some missing headers such as <linux/errno.h> or <linux/types.h> or <linux/kernel.h> to header files that make direct usage of things provided by these headers. Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Tom Rini <trini@konsulko.com>
33 lines
645 B
C
33 lines
645 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2015 National Instruments
|
|
*
|
|
* (C) Copyright 2015
|
|
* Joe Hershberger <joe.hershberger@ni.com>
|
|
*/
|
|
|
|
#ifndef __MAPMEM_H
|
|
#define __MAPMEM_H
|
|
|
|
/* Define a null map_sysmem() if the architecture doesn't use it */
|
|
# ifdef CONFIG_ARCH_MAP_SYSMEM
|
|
#include <asm/io.h>
|
|
# else
|
|
#include <linux/types.h>
|
|
|
|
static inline void *map_sysmem(phys_addr_t paddr, unsigned long len)
|
|
{
|
|
return (void *)(uintptr_t)paddr;
|
|
}
|
|
|
|
static inline void unmap_sysmem(const void *vaddr)
|
|
{
|
|
}
|
|
|
|
static inline phys_addr_t map_to_sysmem(const void *ptr)
|
|
{
|
|
return (phys_addr_t)(uintptr_t)ptr;
|
|
}
|
|
# endif
|
|
|
|
#endif /* __MAPMEM_H */
|