Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit abea3f2c authored by Russell King's avatar Russell King
Browse files

ARM: restart: tegra: use new restart hook



Hook these platforms restart code into the new restart hook rather
than using arch_reset().

Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent dd1661e2
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -132,5 +132,6 @@ DT_MACHINE_START(TEGRA_DT, "nVidia Tegra (Flattened Device Tree)")
	.init_irq	= tegra_init_irq,
	.timer		= &tegra_timer,
	.init_machine	= tegra_dt_init,
	.restart	= tegra_assert_system_reset,
	.dt_compat	= tegra_dt_board_compat,
MACHINE_END
+1 −0
Original line number Diff line number Diff line
@@ -189,4 +189,5 @@ MACHINE_START(HARMONY, "harmony")
	.init_irq       = tegra_init_irq,
	.timer          = &tegra_timer,
	.init_machine   = tegra_harmony_init,
	.restart	= tegra_assert_system_reset,
MACHINE_END
+1 −0
Original line number Diff line number Diff line
@@ -192,4 +192,5 @@ MACHINE_START(PAZ00, "Toshiba AC100 / Dynabook AZ")
	.init_irq       = tegra_init_irq,
	.timer          = &tegra_timer,
	.init_machine   = tegra_paz00_init,
	.restart	= tegra_assert_system_reset,
MACHINE_END
+3 −0
Original line number Diff line number Diff line
@@ -286,6 +286,7 @@ MACHINE_START(SEABOARD, "seaboard")
	.init_irq       = tegra_init_irq,
	.timer          = &tegra_timer,
	.init_machine   = tegra_seaboard_init,
	.restart	= tegra_assert_system_reset,
MACHINE_END

MACHINE_START(KAEN, "kaen")
@@ -295,6 +296,7 @@ MACHINE_START(KAEN, "kaen")
	.init_irq       = tegra_init_irq,
	.timer          = &tegra_timer,
	.init_machine   = tegra_kaen_init,
	.restart	= tegra_assert_system_reset,
MACHINE_END

MACHINE_START(WARIO, "wario")
@@ -304,4 +306,5 @@ MACHINE_START(WARIO, "wario")
	.init_irq       = tegra_init_irq,
	.timer          = &tegra_timer,
	.init_machine   = tegra_wario_init,
	.restart	= tegra_assert_system_reset,
MACHINE_END
+1 −0
Original line number Diff line number Diff line
@@ -178,4 +178,5 @@ MACHINE_START(TRIMSLICE, "trimslice")
	.init_irq       = tegra_init_irq,
	.timer          = &tegra_timer,
	.init_machine   = tegra_trimslice_init,
	.restart	= tegra_assert_system_reset,
MACHINE_END
Loading