aboutsummaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorMike Frysinger <vapier.adi@gmail.com>2009-02-04 16:49:45 +0800
committerBryan Wu <cooloney@kernel.org>2009-02-04 16:49:45 +0800
commita6595bf04b9cc9a4997e6d849b62d69439dd1eff (patch)
tree821e085184c960fa6e67df5762cfeec31ae8df6e /arch
parentadab7eb883a0b0fb7f13b1d7b30b596139f6f40d (diff)
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>
Diffstat (limited to 'arch')
-rw-r--r--arch/blackfin/kernel/reboot.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/arch/blackfin/kernel/reboot.c b/arch/blackfin/kernel/reboot.c
index f7ca5789ccc..53d08dee853 100644
--- a/arch/blackfin/kernel/reboot.c
+++ b/arch/blackfin/kernel/reboot.c
@@ -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)
{