From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756356AbZKRKwp (ORCPT ); Wed, 18 Nov 2009 05:52:45 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755427AbZKRKwo (ORCPT ); Wed, 18 Nov 2009 05:52:44 -0500 Received: from mail-pz0-f171.google.com ([209.85.222.171]:61427 "EHLO mail-pz0-f171.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754258AbZKRKwo (ORCPT ); Wed, 18 Nov 2009 05:52:44 -0500 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=YbGmbWKfjvKCXD2TFtbIED/Qjrb7tW1KH9o/7kQ+nuc7vArl2RrwrBikF/chGcekgr x/iFVJlKGZ6wB5J8WIPBUy9ySqAP2FRc+6anEmO8aI+3evjtbG8KL32Fp3oyMDV2b521 c73q6Xsg4f4uPGe/oFufMVakoBxxBc26WaSA8= MIME-Version: 1.0 In-Reply-To: <4B03CA6E.8080102@suse.cz> References: <4B03CA6E.8080102@suse.cz> Date: Wed, 18 Nov 2009 16:52:48 +0600 Message-ID: Subject: Re: [PATCH] kconfig: Add missing prototype From: Rakib Mullick To: Michal Marek Cc: Andrew Morton , linux-kbuild@vger.kernel.org, LKML , Sam Ravnborg Content-Type: text/plain; charset=ISO-8859-1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 11/18/09, Michal Marek wrote: > > Hi Rakib, > > thanks for the fix, but I already posted a new, simplified version that > doesn't use the fprintf2() thing at all: > http://patchwork.kernel.org/patch/50131/ > Hi Michal, Sorry I couldn't pick that up. Maybe it's not in the current -mm tree. Isn't it? Does your simplified version removes the use of fprintf2()? Thanks, Rakib > > Michal > > > > > When building defconfig on i386 - we were hit by the following warning: > > > > HOSTCC scripts/kconfig/zconf.tab.o > > In file included from scripts/kconfig/zconf.tab.c:2451: > > scripts/kconfig/confdata.c:676: warning: no previous prototype for 'fprintf2' > > > > Signed-off-by: Rakib Mullick > > --- > > > > --- linus/scripts/kconfig/lkc.h 2009-11-18 16:37:46.000000000 +0600 > > +++ rakib/scripts/kconfig/lkc.h 2009-11-18 17:03:19.000000000 +0600 > > @@ -79,6 +79,7 @@ char *conf_get_default_confname(void); > > void sym_set_change_count(int count); > > void sym_add_change_count(int count); > > void conf_set_all_new_symbols(enum conf_def_mode mode); > > +int fprintf2(FILE *f1, FILE *f2, const char *fmt, ...); > > > > /* kconfig_load.c */ > > void kconfig_load(void); > >