summaryrefslogtreecommitdiffstats
path: root/arch/arm/include/asm/memory.h
blob: 2279306179af5af1f771c8b225f0bdf45cc49a2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __ASM_ARM_MEMORY_H
#define __ASM_ARM_MEMORY_H

#include <memory.h>

#include <linux/const.h>
/*
 * Allow for constants defined here to be used from assembly code
 * by prepending the UL suffix only with actual C code compilation.
 */
#define UL(x) _AC(x, UL)

static inline int arm_add_mem_device(const char* name, resource_size_t start,
				     resource_size_t size)
{
	return barebox_add_memory_bank(name, start, size);
}

#endif	/* __ASM_ARM_MEMORY_H */