rk: move system.h from mach-rk30 to plat-rk

This commit is contained in:
黄涛
2012-07-02 19:57:53 +08:00
parent 00077a7819
commit bbfd2efb43
2 changed files with 14 additions and 13 deletions

View File

@@ -1,13 +1 @@
#ifndef __MACH_SYSTEM_H
#define __MACH_SYSTEM_H
#include <asm/proc-fns.h>
static inline void arch_idle(void)
{
cpu_do_idle();
}
extern void (*arch_reset)(char, const char *);
#endif
#include <plat/system.h>

View File

@@ -0,0 +1,13 @@
#ifndef __PLAT_SYSTEM_H
#define __PLAT_SYSTEM_H
#include <asm/proc-fns.h>
static inline void arch_idle(void)
{
cpu_do_idle();
}
extern void (*arch_reset)(char, const char *);
#endif