Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932637Ab2EIWSr (ORCPT ); Wed, 9 May 2012 18:18:47 -0400 Received: from mx1.redhat.com ([209.132.183.28]:37898 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932538Ab2EIWSp (ORCPT ); Wed, 9 May 2012 18:18:45 -0400 Date: Wed, 9 May 2012 18:18:38 -0400 (EDT) From: Mikulas Patocka X-X-Sender: mpatocka@file.rdu.redhat.com To: torvalds@linux-foundation.org cc: linux-parisc@vger.kernel.org, linux-kernel@vger.kernel.org, Rolf Eike Beer , "James E.J. Bottomley" , Helge Deller Subject: [PATCH 4/5] PA-RISC: fix compile errors In-Reply-To: Message-ID: References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1695 Lines: 37 From: Rolf Eike Beer Fixes these errors: In file included from /home/buildbot/repos/linux/arch/parisc/include/asm/io.h:5:0, from /home/buildbot/repos/linux/include/linux/io.h:22, from /home/buildbot/repos/linux/include/linux/pci.h:54, from /home/buildbot/repos/linux/arch/parisc/kernel/setup.c:35: /home/buildbot/repos/linux/arch/parisc/include/asm/pgtable.h:92:6: warning: "PAGE_SHIFT" is not defined [-Wundef] /home/buildbot/repos/linux/arch/parisc/include/asm/pgtable.h:92:6: warning: "PAGE_SHIFT" is not defined [-Wundef] /home/buildbot/repos/linux/arch/parisc/include/asm/pgtable.h:92:6: warning: "BITS_PER_PTE_ENTRY" is not defined [-Wundef] Signed-off-by: Rolf Eike Beer Signed-off-by: Mikulas Patocka --- arch/parisc/include/asm/pgtable.h | 2 ++ 1 file changed, 2 insertions(+) Index: linux-3.4-rc6-fast/arch/parisc/include/asm/pgtable.h =================================================================== --- linux-3.4-rc6-fast.orig/arch/parisc/include/asm/pgtable.h 2012-05-09 04:34:41.000000000 +0200 +++ linux-3.4-rc6-fast/arch/parisc/include/asm/pgtable.h 2012-05-09 04:35:16.000000000 +0200 @@ -44,6 +44,8 @@ struct vm_area_struct; #endif /* !__ASSEMBLY__ */ +#include + #define pte_ERROR(e) \ printk("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, pte_val(e)) #define pmd_ERROR(e) \ -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/