From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753915AbXJXH2l (ORCPT ); Wed, 24 Oct 2007 03:28:41 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751068AbXJXH2d (ORCPT ); Wed, 24 Oct 2007 03:28:33 -0400 Received: from havoc.gtf.org ([69.61.125.42]:55905 "EHLO havoc.gtf.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750836AbXJXH2d (ORCPT ); Wed, 24 Oct 2007 03:28:33 -0400 Date: Wed, 24 Oct 2007 03:28:32 -0400 From: Jeff Garzik To: Andrew Morton , Linus Torvalds Cc: LKML , Rusty Russell Subject: [PATCH 2.6.24-rc1] lguest: build fix Message-ID: <20071024072832.GA26606@havoc.gtf.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.5.14 (2007-02-12) Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Fix this error (i386 !SMP build) arch/x86/lguest/boot.c: In function ‘lguest_init’: arch/x86/lguest/boot.c:1059: error: ‘pm_power_off’ undeclared (first use in this function) by including linux/pm.h. Signed-off-by: Jeff Garzik --- Gee, lguest appears to be unmaintained, according to MAINTAINERS :) diff --git a/arch/x86/lguest/boot.c b/arch/x86/lguest/boot.c index d2235db..8f13562 100644 --- a/arch/x86/lguest/boot.c +++ b/arch/x86/lguest/boot.c @@ -56,6 +56,7 @@ #include #include #include +#include #include #include #include