dect
/
linux-2.6
Archived
13
0
Fork 0

Blackfin arch: bfin_reset->_bfin_reset redirection no longer needed

Signed-off-by: Mike Frysinger <vapier.adi@gmail.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
This commit is contained in:
Mike Frysinger 2009-02-04 16:49:45 +08:00 committed by Bryan Wu
parent adab7eb883
commit a6595bf04b
1 changed files with 1 additions and 7 deletions

View File

@ -21,7 +21,7 @@
* the core reset.
*/
__attribute__ ((__l1_text__, __noreturn__))
static void _bfin_reset(void)
static void bfin_reset(void)
{
/* Wait for completion of "system" events such as cache line
* line fills so that we avoid infinite stalls later on as
@ -76,12 +76,6 @@ static void _bfin_reset(void)
asm("raise 1");
}
__attribute__ ((__noreturn__))
static void bfin_reset(void)
{
_bfin_reset();
}
__attribute__((weak))
void native_machine_restart(char *cmd)
{