7e11828c6e
Created a new directory called bsp (board support package) to hold board or system on chip specific code. The idea is the following. Change-Id: Ica5886806940facae2fa5492fcc938b3c2b989be
8 lines
147 B
C
8 lines
147 B
C
#ifndef _BSP_RESET_H_
|
|
#define _BSP_RESET_H_
|
|
|
|
void bsp_reset_init(void);
|
|
void bsp_reset(void);
|
|
void bsp_poweroff(void);
|
|
|
|
#endif /* _BSP_RESET_H_ */
|