From patchwork Wed Apr 1 15:43:40 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Beregalov X-Patchwork-Id: 15713 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n31Fhi0V022469 for ; Wed, 1 Apr 2009 15:43:44 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756290AbZDAPnp (ORCPT ); Wed, 1 Apr 2009 11:43:45 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1757158AbZDAPno (ORCPT ); Wed, 1 Apr 2009 11:43:44 -0400 Received: from mail-ew0-f165.google.com ([209.85.219.165]:58440 "EHLO mail-ew0-f165.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756290AbZDAPnn (ORCPT ); Wed, 1 Apr 2009 11:43:43 -0400 Received: by ewy9 with SMTP id 9so103094ewy.37 for ; Wed, 01 Apr 2009 08:43:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=20ZvgMQqhngmECg+OIcFjgWWNIj+6noHtnX89vGJQ0U=; b=DIB3F35CHls+i7S5bKySBMghbteP8JQx94VSZtKo03qDlDV6dceIZnofE5syjPOolM SRZagMEmQTfkxOd8CyUz+cKlnWhE7cm9+m+NkF01eRKJK8H7+EFwR5JgreOM4bvL0oT8 1fKFeSTp7yFYeJSgoh5M/80O6M5FLe250yIuo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=Xo4vd24SIT3HsZlVp9FIve9GQZ6PJHbs5KNsO0ou2VcHS6C2bjtYy2LGDWN04tmLB8 cJp1Mb+/oC25FgSvScuWCkEXzbccId3ZmBmCU2q6gqibEsQBZXZ62QkmDcHwkpY9Jnb2 zHKpwt350j7J1gldSSV8KaIndjMfFMFPUijgI= MIME-Version: 1.0 Received: by 10.211.178.8 with SMTP id f8mr5043859ebp.55.1238600620753; Wed, 01 Apr 2009 08:43:40 -0700 (PDT) In-Reply-To: <20090401150956.GB1443@bombadil.infradead.org> References: <20090401150115.GA1443@bombadil.infradead.org> <20090401150956.GB1443@bombadil.infradead.org> Date: Wed, 1 Apr 2009 19:43:40 +0400 Message-ID: Subject: Re: [PATCH next] parisc: asm/pdc.h should include asm/page.h From: Alexander Beregalov To: Kyle McMartin Cc: "linux-next@vger.kernel.org" , linux-parisc@vger.kernel.org Sender: linux-parisc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-parisc@vger.kernel.org From: Alexander Beregalov Subject: [PATCH] parisc: asm/pdc.h should include asm/page.h Fixes this build error: arch/parisc/kernel/pdc_cons.c:117: error: '__PAGE_OFFSET' undeclared Signed-off-by: Alexander Beregalov --- arch/parisc/include/asm/pdc.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-parisc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/arch/parisc/include/asm/pdc.h b/arch/parisc/include/asm/pdc.h index a26e98d..90d6973 100644 --- a/arch/parisc/include/asm/pdc.h +++ b/arch/parisc/include/asm/pdc.h @@ -343,6 +343,8 @@ #ifdef __KERNEL__ +#include /* for __PAGE_OFFSET */ + extern int pdc_type; /* Values for pdc_type */