Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755807Ab1DZNYg (ORCPT ); Tue, 26 Apr 2011 09:24:36 -0400 Received: from mail-pv0-f174.google.com ([74.125.83.174]:42055 "EHLO mail-pv0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755652Ab1DZNYG (ORCPT ); Tue, 26 Apr 2011 09:24:06 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=NIMBEpmGMQAh6tAQMc4QddE8TPgIHD51OdmHMvjB4WAgUJnk46fS3BOqkrZXJpgmP+ GC3x8aPIYA03sI/pNXiagVE/Dtm1OXAvojCi/TCe4v9/zkAzEA1HLt0/8/rsCqpd/ilu EMQgmGOcg0YKtPxAwBhxjpvA3gYjTST+tVSG8= From: Akinobu Mita To: linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org, akpm@linux-foundation.org, arnd@arndb.de Cc: Akinobu Mita , Greg Ungerer Subject: [PATCH v2 6/6] m68knommu: fix build error due to the lack of find_next_bit_le() Date: Tue, 26 Apr 2011 22:23:43 +0900 Message-Id: <1303824223-3566-7-git-send-email-akinobu.mita@gmail.com> X-Mailer: git-send-email 1.7.4.4 In-Reply-To: <1303824223-3566-1-git-send-email-akinobu.mita@gmail.com> References: <1303824223-3566-1-git-send-email-akinobu.mita@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1148 Lines: 35 m68knommu can't build ext4 and udf due to the lack of find_next_bit_le(). By the previous style change, m68knommu got generic find_next_bit_le(). The extern declaration is only needed to fix the build error. Signed-off-by: Akinobu Mita Cc: Greg Ungerer --- No change from previous submission arch/m68k/include/asm/bitops_no.h | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/arch/m68k/include/asm/bitops_no.h b/arch/m68k/include/asm/bitops_no.h index 614c613..c4250ae 100644 --- a/arch/m68k/include/asm/bitops_no.h +++ b/arch/m68k/include/asm/bitops_no.h @@ -337,6 +337,9 @@ found_middle: } #define find_next_zero_bit_le find_next_zero_bit_le +extern unsigned long find_next_bit_le(const void *addr, + unsigned long size, unsigned long offset); + #endif /* __KERNEL__ */ #include -- 1.7.4.4 -- 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/