Path: blob/master/arch/arm/mach-mxs/include/mach/system.h
10820 views
/*1* Copyright (C) 1999 ARM Limited2* Copyright (C) 2000 Deep Blue Solutions Ltd3* Copyright 2004-2008 Freescale Semiconductor, Inc. All Rights Reserved.4*5* This program is free software; you can redistribute it and/or modify6* it under the terms of the GNU General Public License as published by7* the Free Software Foundation; either version 2 of the License, or8* (at your option) any later version.9*10* This program is distributed in the hope that it will be useful,11* but WITHOUT ANY WARRANTY; without even the implied warranty of12* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the13* GNU General Public License for more details.14*/1516#ifndef __MACH_MXS_SYSTEM_H__17#define __MACH_MXS_SYSTEM_H__1819static inline void arch_idle(void)20{21cpu_do_idle();22}2324void arch_reset(char mode, const char *cmd);2526#endif /* __MACH_MXS_SYSTEM_H__ */272829