Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S262644AbVATQfl (ORCPT ); Thu, 20 Jan 2005 11:35:41 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S262543AbVATQfc (ORCPT ); Thu, 20 Jan 2005 11:35:32 -0500 Received: from l247150.ppp.asahi-net.or.jp ([218.219.247.150]:30679 "EHLO mitou.ysato.dip.jp") by vger.kernel.org with ESMTP id S262285AbVATQap (ORCPT ); Thu, 20 Jan 2005 11:30:45 -0500 Date: Fri, 21 Jan 2005 01:30:41 +0900 Message-ID: From: Yoshinori Sato To: Andrew Morton Cc: linux-kernel@vger.kernel.org Subject: [PATCH] h8300 fix warning User-Agent: Wanderlust/2.11.30 (Wonderwall) SEMI/1.14.6 (Maruoka) LIMIT/1.14.9 (Domyoji) APEL/10.6 Emacs/21.3 (i386-pc-linux-gnu) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 900 Lines: 25 o update argument type Signed-off-by: Yoshinori Sato ===== include/asm-h8300/bitops.h 1.10 vs edited ===== --- 1.10/include/asm-h8300/bitops.h 2004-11-12 16:38:42 +09:00 +++ edited/include/asm-h8300/bitops.h 2005-01-20 23:14:39 +09:00 @@ -196,7 +196,7 @@ return result; } -static __inline__ int find_next_zero_bit (void * addr, int size, int offset) +static __inline__ int find_next_zero_bit (const unsigned long * addr, int size, int offset) { unsigned long *p = (unsigned long *)(((unsigned long)addr + (offset >> 3)) & ~3); unsigned long result = offset & ~31UL; -- Yoshinori Sato - 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/