Commit 187e3e06 authored by Paul Walmsley's avatar Paul Walmsley
Browse files

ARM: OMAP2+: board files: use SoC-specific system restart functions



Modify the board files to use the SoC-specific system restart
functions.  At this point it's possible to remove omap_prcm_restart()
from mach-omap2/prcm.c.

While removing the prototypes for the now-unused restart functions, clean
up a few more obsolete prototypes in mach-omap2/clock.h.

Signed-off-by: default avatarPaul Walmsley <paul@pwsan.com>
Tested-by: default avatarVaibhav Hiremath <hvaibhav@ti.com>
parent 2f334a38
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -286,5 +286,5 @@ MACHINE_START(OMAP_2430SDP, "OMAP2430 sdp2430 board")
	.init_machine	= omap_2430sdp_init,
	.init_late	= omap2430_init_late,
	.timer		= &omap2_timer,
	.restart	= omap_prcm_restart,
	.restart	= omap2xxx_restart,
MACHINE_END
+1 −1
Original line number Diff line number Diff line
@@ -597,5 +597,5 @@ MACHINE_START(OMAP_3430SDP, "OMAP3430 3430SDP board")
	.init_machine	= omap_3430sdp_init,
	.init_late	= omap3430_init_late,
	.timer		= &omap3_timer,
	.restart	= omap_prcm_restart,
	.restart	= omap3xxx_restart,
MACHINE_END
+1 −1
Original line number Diff line number Diff line
@@ -212,5 +212,5 @@ MACHINE_START(OMAP_3630SDP, "OMAP 3630SDP board")
	.init_machine	= omap_sdp_init,
	.init_late	= omap3630_init_late,
	.timer		= &omap3_timer,
	.restart	= omap_prcm_restart,
	.restart	= omap3xxx_restart,
MACHINE_END
+1 −1
Original line number Diff line number Diff line
@@ -881,5 +881,5 @@ MACHINE_START(OMAP_4430SDP, "OMAP4430 4430SDP board")
	.init_machine	= omap_4430sdp_init,
	.init_late	= omap4430_init_late,
	.timer		= &omap4_timer,
	.restart	= omap_prcm_restart,
	.restart	= omap44xx_restart,
MACHINE_END
+1 −1
Original line number Diff line number Diff line
@@ -93,5 +93,5 @@ MACHINE_START(CRANEBOARD, "AM3517/05 CRANEBOARD")
	.init_machine	= am3517_crane_init,
	.init_late	= am35xx_init_late,
	.timer		= &omap3_timer,
	.restart	= omap_prcm_restart,
	.restart	= omap3xxx_restart,
MACHINE_END
Loading