Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932587Ab2EIWQx (ORCPT ); Wed, 9 May 2012 18:16:53 -0400 Received: from mx1.redhat.com ([209.132.183.28]:10073 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932519Ab2EIWQv (ORCPT ); Wed, 9 May 2012 18:16:51 -0400 Date: Wed, 9 May 2012 18:16: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 1/5] PA-RISC: fix compile errors Message-ID: 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: 2427 Lines: 43 From: Rolf Eike Beer This leads to this errors: In file included from /home/buildbot/repos/linux/arch/parisc/include/asm/atomic.h:20:0, from /home/buildbot/repos/linux/include/linux/atomic.h:4, from /home/buildbot/repos/linux/arch/parisc/include/asm/bitops.h:56, from /home/buildbot/repos/linux/include/linux/bitops.h:22, from /home/buildbot/repos/linux/include/linux/kernel.h:19, from /home/buildbot/repos/linux/include/linux/sched.h:55, from /home/buildbot/repos/linux/arch/parisc/kernel/asm-offsets.c:31: /home/buildbot/repos/linux/arch/parisc/include/asm/spinlock.h: In function "arch_spin_is_locked": /home/buildbot/repos/linux/arch/parisc/include/asm/spinlock.h:9:2: error: implicit declaration of function "__ldcw_align" [-Werror=implicit-function-declaration] /home/buildbot/repos/linux/arch/parisc/include/asm/spinlock.h:9:29: warning: initialization makes pointer from integer without a cast [enabled by default] /home/buildbot/repos/linux/arch/parisc/include/asm/spinlock.h: In function "arch_spin_lock_flags": /home/buildbot/repos/linux/arch/parisc/include/asm/spinlock.h:22:2: error: implicit declaration of function "mb" [-Werror=implicit-function-declaration] /home/buildbot/repos/linux/arch/parisc/include/asm/spinlock.h:23:4: warning: assignment makes pointer from integer without a cast [enabled by default] /home/buildbot/repos/linux/arch/parisc/include/asm/spinlock.h:24:2: error: implicit declaration of function "__ldcw" [-Werror=implicit-function-declaration] Signed-off-by: Rolf Eike Beer Signed-off-by: Mikulas Patocka --- arch/parisc/include/asm/spinlock.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/parisc/include/asm/spinlock.h b/arch/parisc/include/asm/spinlock.h index 804aa28..3516e0b 100644 --- a/arch/parisc/include/asm/spinlock.h +++ b/arch/parisc/include/asm/spinlock.h @@ -1,6 +1,8 @@ #ifndef __ASM_SPINLOCK_H #define __ASM_SPINLOCK_H +#include +#include #include #include -- 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/