Newer
Older
barebox / arch / arm / mach-omap / include / mach / omap4-generic.h
@Sascha Hauer Sascha Hauer on 27 Aug 2013 398 bytes ARM: omap: fix omap_save_bootinfo
#ifndef __MACH_OMAP4_GENERIC_H
#define __MACH_OMAP4_GENERIC_H

#include <mach/generic.h>
#include <mach/omap4-silicon.h>

static inline void omap4_save_bootinfo(uint32_t *info)
{
	unsigned long i = (unsigned long)info;

	if (i & 0x3)
		return;
	if (i < OMAP44XX_SRAM_BASE)
		return;
	if (i > OMAP44XX_SRAM_BASE + SZ_64K)
		return;

	omap_save_bootinfo(info);
}

#endif /* __MACH_OMAP4_GENERIC_H */