From patchwork Thu Apr 25 17:29:00 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnd Bergmann X-Patchwork-Id: 2489551 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from casper.infradead.org (casper.infradead.org [85.118.1.10]) by patchwork2.kernel.org (Postfix) with ESMTP id 0895ADF5B1 for ; Thu, 25 Apr 2013 18:27:16 +0000 (UTC) Received: from merlin.infradead.org ([205.233.59.134]) by casper.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UVQ63-0005ou-8E; Thu, 25 Apr 2013 17:36:39 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1UVQ0U-0007H3-NL; Thu, 25 Apr 2013 17:30:54 +0000 Received: from moutng.kundenserver.de ([212.227.126.171]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UVPyq-00073A-0y for linux-arm-kernel@lists.infradead.org; Thu, 25 Apr 2013 17:29:23 +0000 Received: from wuerfel.lan (HSI-KBW-095-208-002-043.hsi5.kabel-badenwuerttemberg.de [95.208.2.43]) by mrelayeu.kundenserver.de (node=mrbap4) with ESMTP (Nemesis) id 0MSa8q-1U60nP28Hs-00Rd0c; Thu, 25 Apr 2013 19:29:07 +0200 From: Arnd Bergmann To: linux-arm-kernel@lists.infradead.org Subject: [PATCH 17/21] X.509: do not emit any informational output Date: Thu, 25 Apr 2013 19:29:00 +0200 Message-Id: <1366910944-3033663-18-git-send-email-arnd@arndb.de> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1366910944-3033663-1-git-send-email-arnd@arndb.de> References: <1366910944-3033663-1-git-send-email-arnd@arndb.de> X-Provags-ID: V02:K0:6JAVlzCCac8aXp2QCgbtVyF0P79cLG+GWxPdfG3UMJp SF1VdGdOtV9+k+9UhvXWmoZ4hmKdf6+JYb9sNiM6ixr0s5eNVL PtkQEMQmeAvBt+0Y8iIceYq5xbaENexb/hPRiHXalZkOaq8lRu sXxkePvdrauI32IfWIUvieL690blEkGuvKhcP2xCJFRNiLKrKq OY+WEIy/S2jBqm+RNkVESyG1Mab3CeiP15IAiTnc+mlUBoXSIP FNMrajWHY/l2mvVjMcDUrlmB8+rct8zalPuSLN1AY6r1W/ExAD mhsUY3o7nDOr8N4TEhYSX5kaLb7d+u8d5xw5AtzYiFUmLIOR5F 110T78JN7Zd58GJYfoUTXkGlHSHOfcPM+i0hZ+POX X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130425_132912_443125_5B9608B7 X-CRM114-Status: UNSURE ( 9.65 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -1.9 (-) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-1.9 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at http://www.dnswl.org/, no trust [212.227.126.171 listed in list.dnswl.org] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: David Howells , Rusty Russell , linux-kernel@vger.kernel.org, Arnd Bergmann X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org When building a kernel using 'make -s', I expect to see an empty output, except for build warnings and errors. The build_OID_registry code always prints one line when run, which is not helpful to most people building the kernels, and which makes it harder to automatically check for build warnings. Let's just remove the one line output. Signed-off-by: Arnd Bergmann Cc: David Howells Cc: Rusty Russell --- lib/build_OID_registry | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/build_OID_registry b/lib/build_OID_registry index dfbdaab..5d98272 100755 --- a/lib/build_OID_registry +++ b/lib/build_OID_registry @@ -50,8 +50,6 @@ my @indices = (); my @lengths = (); my $total_length = 0; -print "Compiling ", $#names + 1, " OIDs\n"; - for (my $i = 0; $i <= $#names; $i++) { my $name = $names[$i]; my $oid = $oids[$i];