From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.semihalf.com (mail.semihalf.com [83.12.36.68]) by ozlabs.org (Postfix) with ESMTP id BD50BDDDFD for ; Sun, 7 Oct 2007 21:33:09 +1000 (EST) Received: from localhost (unknown [127.0.0.1]) by mail.semihalf.com (Postfix) with ESMTP id CBE8C143DA for ; Sun, 7 Oct 2007 13:33:07 +0200 (CEST) Received: from mail.semihalf.com ([127.0.0.1]) by localhost (mail.semihalf.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06715-07 for ; Sun, 7 Oct 2007 13:33:06 +0200 (CEST) Message-ID: <4708C3E8.1000803@semihalf.com> Date: Sun, 07 Oct 2007 13:32:56 +0200 From: Marian Balakowicz MIME-Version: 1.0 To: linuxppc-dev@ozlabs.org Subject: [PATCH 13/15] [POWERPC] Init restart/halt/power_off machine hooks for TQM5200. References: <47075FA7.3030108@semihalf.com> In-Reply-To: <47075FA7.3030108@semihalf.com> Content-Type: text/plain; charset=ISO-8859-2 List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Initialize restart/halt/power_off machine hooks in TQM5200 board platform code. Signed-off-by: Marian Balakowicz --- tqm5200.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/powerpc/platforms/52xx/tqm5200.c b/arch/powerpc/platforms/52xx/tqm5200.c index 780b79f..09151d6 100644 --- a/arch/powerpc/platforms/52xx/tqm5200.c +++ b/arch/powerpc/platforms/52xx/tqm5200.c @@ -171,4 +171,7 @@ define_machine(tqm5200) { .get_irq = mpc52xx_get_irq, .show_cpuinfo = tqm5200_show_cpuinfo, .calibrate_decr = generic_calibrate_decr, + .restart = mpc52xx_restart, + .halt = mpc52xx_halt, + .power_off = mpc52xx_power_off, };