mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
1cdf2482d1
Renesas SH73A0 is CPU with Cortex-A9. This supports the basic register definition and GPIO. Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12 lines
249 B
C
12 lines
249 B
C
#ifndef __ASM_ARCH_RMOBILE_H
|
|
#define __ASM_ARCH_RMOBILE_H
|
|
|
|
#if defined(CONFIG_RMOBILE)
|
|
#if defined(CONFIG_SH73A0)
|
|
#include <asm/arch/sh73a0.h>
|
|
#else
|
|
#error "SOC Name not defined"
|
|
#endif
|
|
#endif /* CONFIG_RMOBILE */
|
|
|
|
#endif /* __ASM_ARCH_RMOBILE_H */
|