mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
a912e80bd0
Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license as published by the free software foundation either version 2 of the license or at your option any later version you should have received a copy of the gnu general public license along with this program if not write to the free software foundation inc 675 mass ave cambridge ma 02139 usa extracted by the scancode license scanner the SPDX license identifier GPL-2.0-or-later has been chosen to replace the boilerplate/reference in 35 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Armijn Hemel <armijn@tjaldur.nl> Reviewed-by: Richard Fontana <rfontana@redhat.com> Reviewed-by: Allison Randal <allison@lohutok.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190527070032.655028468@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
25 lines
352 B
C
25 lines
352 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (C) 2010, Lars-Peter Clausen <lars@metafoo.de>
|
|
*/
|
|
|
|
#include <asm/reboot.h>
|
|
|
|
#include "reset.h"
|
|
|
|
static void jz4740_halt(void)
|
|
{
|
|
while (1) {
|
|
__asm__(".set push;\n"
|
|
".set mips3;\n"
|
|
"wait;\n"
|
|
".set pop;\n"
|
|
);
|
|
}
|
|
}
|
|
|
|
void jz4740_reset_init(void)
|
|
{
|
|
_machine_halt = jz4740_halt;
|
|
}
|