From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755779AbcARQQH (ORCPT ); Mon, 18 Jan 2016 11:16:07 -0500 Received: from mx2.suse.de ([195.135.220.15]:41703 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755746AbcARQQE (ORCPT ); Mon, 18 Jan 2016 11:16:04 -0500 Date: Mon, 18 Jan 2016 17:16:01 +0100 From: Jean Delvare To: LKML Cc: Andrew Morton Subject: [PATCH] libcrc32c: Fix build warning Message-ID: <20160118171601.4a53e112@endymion.delvare> Organization: SUSE Linux X-Mailer: Claws Mail 3.10.1 (GTK+ 2.24.23; x86_64-suse-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Fix the following build warning: lib/libcrc32c.c:42:5: warning: no previous prototype for "crc32c" [-Wmissing-prototypes] u32 crc32c(u32 crc, const void *address, unsigned int length) ^ Signed-off-by: Jean Delvare --- lib/libcrc32c.c | 1 + 1 file changed, 1 insertion(+) --- linux-4.5-rc0.orig/lib/libcrc32c.c 2016-01-18 16:47:47.978681236 +0100 +++ linux-4.5-rc0/lib/libcrc32c.c 2016-01-18 17:07:08.985586064 +0100 @@ -36,6 +36,7 @@ #include #include #include +#include static struct crypto_shash *tfm; -- Jean Delvare SUSE L3 Support