Blackfin arch: bfin_reset() is an internal reboot function ... everyone should go through machine_restart()
Signed-off-by: Mike Frysinger <vapier.adi@gmail.com> Signed-off-by: Bryan Wu <cooloney@kernel.org>
This commit is contained in:
parent
e482cad241
commit
9a6f5ae1f1
|
@ -63,7 +63,6 @@ extern void bfin_dcache_init(void);
|
||||||
extern void init_exception_vectors(void);
|
extern void init_exception_vectors(void);
|
||||||
extern void program_IAR(void);
|
extern void program_IAR(void);
|
||||||
|
|
||||||
extern void bfin_reset(void);
|
|
||||||
extern asmlinkage void lower_to_irq14(void);
|
extern asmlinkage void lower_to_irq14(void);
|
||||||
extern asmlinkage void bfin_return_from_exception(void);
|
extern asmlinkage void bfin_return_from_exception(void);
|
||||||
extern asmlinkage void evt14_softirq(void);
|
extern asmlinkage void evt14_softirq(void);
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
* the core reset.
|
* the core reset.
|
||||||
*/
|
*/
|
||||||
__attribute__((l1_text))
|
__attribute__((l1_text))
|
||||||
void bfin_reset(void)
|
static void bfin_reset(void)
|
||||||
{
|
{
|
||||||
/* Wait for completion of "system" events such as cache line
|
/* Wait for completion of "system" events such as cache line
|
||||||
* line fills so that we avoid infinite stalls later on as
|
* line fills so that we avoid infinite stalls later on as
|
||||||
|
|
Loading…
Reference in New Issue