Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757408Ab1DXJvs (ORCPT ); Sun, 24 Apr 2011 05:51:48 -0400 Received: from mail-pw0-f46.google.com ([209.85.160.46]:56254 "EHLO mail-pw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756583Ab1DXJve (ORCPT ); Sun, 24 Apr 2011 05:51:34 -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=vShuVoZ+AX+EKNSfjGSbSo2qy+0Adh3Nn2AeTBu2Kh9o+DZ98DXhm/Z57VDECM9Ouc zJOAVZmCilaP4QQlbi9q+1j8FnErrKc+PFBm1eQTzmRhbcgmMXHQGMJV5tclq94lXJAT FQgbhPOSkcVSVNAnmPXpwK0LTua6eAfET8R7E= 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 6/6] m68knommu: fix build error due to the lack of find_next_bit_le() Date: Sun, 24 Apr 2011 18:51:17 +0900 Message-Id: <1303638677-11211-7-git-send-email-akinobu.mita@gmail.com> X-Mailer: git-send-email 1.7.4.4 In-Reply-To: <1303638677-11211-1-git-send-email-akinobu.mita@gmail.com> References: <1303638677-11211-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: 1111 Lines: 32 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 --- 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 e98d42c..247854e 100644 --- a/arch/m68k/include/asm/bitops_no.h +++ b/arch/m68k/include/asm/bitops_no.h @@ -326,6 +326,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/