summaryrefslogtreecommitdiff
path: root/arch/tile/kernel/reboot.c
diff options
context:
space:
mode:
authorChris Metcalf <cmetcalf@tilera.com>2010-11-01 19:24:29 (GMT)
committerChris Metcalf <cmetcalf@tilera.com>2010-11-01 19:30:42 (GMT)
commit5d966115de84c22cd4df029cb00be0e51fab6c10 (patch)
tree85095d93900f7f76a7591620651c5480065cacfb /arch/tile/kernel/reboot.c
parent38a6f4266989c4dae68eccb1a5cb4580a48003e4 (diff)
downloadlinux-fsl-qoriq-5d966115de84c22cd4df029cb00be0e51fab6c10.tar.xz
arch/tile: bomb raw_local_irq_ to arch_local_irq_
This completes the tile migration to the new naming scheme for the architecture-specific irq management code. Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
Diffstat (limited to 'arch/tile/kernel/reboot.c')
-rw-r--r--arch/tile/kernel/reboot.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/tile/kernel/reboot.c b/arch/tile/kernel/reboot.c
index acd86d2..baa3d90 100644
--- a/arch/tile/kernel/reboot.c
+++ b/arch/tile/kernel/reboot.c
@@ -27,7 +27,7 @@
void machine_halt(void)
{
warn_early_printk();
- raw_local_irq_disable_all();
+ arch_local_irq_disable_all();
smp_send_stop();
hv_halt();
}
@@ -35,14 +35,14 @@ void machine_halt(void)
void machine_power_off(void)
{
warn_early_printk();
- raw_local_irq_disable_all();
+ arch_local_irq_disable_all();
smp_send_stop();
hv_power_off();
}
void machine_restart(char *cmd)
{
- raw_local_irq_disable_all();
+ arch_local_irq_disable_all();
smp_send_stop();
hv_restart((HV_VirtAddr) "vmlinux", (HV_VirtAddr) cmd);
}