Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755552Ab0HQFjG (ORCPT ); Tue, 17 Aug 2010 01:39:06 -0400 Received: from mail-pw0-f46.google.com ([209.85.160.46]:46834 "EHLO mail-pw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753594Ab0HQFjE (ORCPT ); Tue, 17 Aug 2010 01:39:04 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=MqPZeQhg1SZ6PkrsJD9MQ51FYBPd/Wx9k8pf71LD3FslTqI26oCJcAJB2+yNwCPff+ mw7lzjxi0OVbc0CyH8cyoKIsr8+sz2Y3NyWNaPX4BCQySZ/V+zM8KgIKyNUUgL2Sv880 qSgiU3rFntBKICmo/PrX1CmfDv2TE/UALHbK8= Date: Tue, 17 Aug 2010 13:43:18 +0800 From: =?utf-8?Q?Am=C3=A9rico?= Wang To: hiromu yagura Cc: linux-kernel@vger.kernel.org, Steven Rostedt , Toralf Foerster , KAMEZAWA Hiroyuki , YOSHIFUJI Hideaki Subject: Re: [PATCH] kconfig: Fix variable name typo in streamline_config.pl. Message-ID: <20100817054318.GC5095@cr0.nay.redhat.com> References: <1281845597.11566.5.camel@camp10-laptop> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1281845597.11566.5.camel@camp10-laptop> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2196 Lines: 67 On Sun, Aug 15, 2010 at 01:13:17PM +0900, hiromu yagura wrote: >When I added "use strict;" to streamline_config.pl, I saw following >warnings. > >> Global symbol "%prompt" requires explicit package name at >scripts/kconfig/streamline_config.pl line 183. >> Global symbol "%prompt" requires explicit package name at >scripts/kconfig/streamline_config.pl line 368. > >Let's fix it. >(Note: prompts[] is defined at line 123 but never used. This seems >typo.) > >Cc: Steven Rostedt >Cc: Toralf Foerster >Cc: KAMEZAWA Hiroyuki >Cc: YOSHIFUJI Hideaki > >Signed-off-by: Hiromu Yakura Acked-by: WANG Cong BTW, I think we should add "use strict;" too. >--- > scripts/kconfig/streamline_config.pl | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/scripts/kconfig/streamline_config.pl >b/scripts/kconfig/streamline_config.pl >index c70a27d..d74363f 100644 >--- a/scripts/kconfig/streamline_config.pl >+++ b/scripts/kconfig/streamline_config.pl >@@ -178,7 +178,7 @@ sub read_kconfig { > # configs without prompts must be selected > } elsif ($state ne "NONE" && /^\s*tristate\s\S/) { > # note if the config has a prompt >- $prompt{$config} = 1; >+ $prompts{$config} = 1; > > # Check for if statements > } elsif (/^if\s+(.*\S)\s*$/) { >@@ -363,7 +363,7 @@ while ($repeat) { > parse_config_dep_select $depends{$config}; > } > >- if (defined($prompt{$config}) || !defined($selects{$config})) { >+ if (defined($prompts{$config}) || !defined($selects{$config})) { > next; > } > >-- >1.7.0.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/ -- 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/