Commit a857c6e7 authored by Arnd Bergmann's avatar Arnd Bergmann

X.509: do not emit any informational output

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: default avatarArnd Bergmann <arnd@arndb.de>
Cc: David Howells <dhowells@redhat.com>
Cc: Rusty Russell <rusty@rustcorp.com.au>
parent 930d800b
...@@ -50,8 +50,6 @@ my @indices = (); ...@@ -50,8 +50,6 @@ my @indices = ();
my @lengths = (); my @lengths = ();
my $total_length = 0; my $total_length = 0;
print "Compiling ", $#names + 1, " OIDs\n";
for (my $i = 0; $i <= $#names; $i++) { for (my $i = 0; $i <= $#names; $i++) {
my $name = $names[$i]; my $name = $names[$i];
my $oid = $oids[$i]; my $oid = $oids[$i];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment