aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorMike Frysinger <vapier.adi@gmail.com>2009-02-04 03:49:45 -0500
committerBryan Wu <cooloney@kernel.org>2009-02-04 03:49:45 -0500
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 f7ca5789cccf..53d08dee8531 100644
--- a/arch/blackfin/kernel/reboot.c
+++ b/arch/blackfin/kernel/reboot.c
@@ -21,7 +21,7 @@
21 * the core reset. 21 * the core reset.
22 */ 22 */
23__attribute__ ((__l1_text__, __noreturn__)) 23__attribute__ ((__l1_text__, __noreturn__))
24static void _bfin_reset(void) 24static void bfin_reset(void)
25{ 25{
26 /* Wait for completion of "system" events such as cache line 26 /* Wait for completion of "system" events such as cache line
27 * line fills so that we avoid infinite stalls later on as 27 * line fills so that we avoid infinite stalls later on as
@@ -76,12 +76,6 @@ static void _bfin_reset(void)
76 asm("raise 1"); 76 asm("raise 1");
77} 77}
78 78
79__attribute__ ((__noreturn__))
80static void bfin_reset(void)
81{
82 _bfin_reset();
83}
84
85__attribute__((weak)) 79__attribute__((weak))
86void native_machine_restart(char *cmd) 80void native_machine_restart(char *cmd)
87{ 81{