From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.6 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id DD9FAC433DF for ; Tue, 25 Aug 2020 11:52:16 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 766A420782 for ; Tue, 25 Aug 2020 11:52:16 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=chronox.de header.i=@chronox.de header.b="sJXEBJai" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729882AbgHYLwP (ORCPT ); Tue, 25 Aug 2020 07:52:15 -0400 Received: from mo4-p01-ob.smtp.rzone.de ([85.215.255.50]:33681 "EHLO mo4-p01-ob.smtp.rzone.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725893AbgHYLwM (ORCPT ); Tue, 25 Aug 2020 07:52:12 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; t=1598356325; s=strato-dkim-0002; d=chronox.de; h=References:In-Reply-To:Message-ID:Date:Subject:Cc:To:From: X-RZG-CLASS-ID:X-RZG-AUTH:From:Subject:Sender; bh=D2qqsSA5sHWxkwGYpXIctTVmxWLQwISn1aS53FcUiHw=; b=sJXEBJaiRrHx8Ivj6PCqR+pcomDUO/Z+qeeRx5lKpv2HBVNgflv5cYeyhMUnNMiSi6 jyk0abqOyC7GK0/TAmPLJuy8PcwQmNKAQWwAmNxxYhIwS2zJ+TWRYVBtFCmQPbYprzde dd2cWAB5WY2dVKmyq6Z68vQP31ZnRWLaH/v0i+2TMSorKevT+FqYaXmz/XrXtGKsOVJ2 iGU9eq0R+wBsDAUhBU4iSFJAituTnDbeSqmjBnJf5cbVI/D+fRnn/iiiTwxYgYRydpx6 IfFjokgZDjNtuQti1/vIMK31jEOVADZRWiBZIY3OWKGCsOM8NJ8aVjlQT9Ijm7AAo+Bk nWqQ== X-RZG-AUTH: ":P2ERcEykfu11Y98lp/T7+hdri+uKZK8TKWEqNyiHySGSa9k9xmwdNnzHHXDaIvSXRbo=" X-RZG-CLASS-ID: mo00 Received: from tauon.chronox.de by smtp.strato.de (RZmta 46.10.7 DYNA|AUTH) with ESMTPSA id 002e9aw7PBpJb3K (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256 bits)) (Client did not present a certificate); Tue, 25 Aug 2020 13:51:19 +0200 (CEST) From: Stephan Mueller To: Arnd Bergmann , kernel test robot Cc: kbuild-all@lists.01.org, Greg Kroah-Hartman , linux-crypto@vger.kernel.org, LKML , linux-api@vger.kernel.org, "Eric W. Biederman" , "Alexander E. Patrakov" , "Ahmed S. Darwish" , "Theodore Y. Ts'o" , Willy Tarreau Subject: Re: [PATCH v34 01/12] Linux Random Number Generator Date: Tue, 25 Aug 2020 13:51:19 +0200 Message-ID: <6658249.kC03pvyZki@tauon.chronox.de> In-Reply-To: <202008251912.50LKcRvL%lkp@intel.com> References: <5695397.lOV4Wx5bFT@positron.chronox.de> <202008251912.50LKcRvL%lkp@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Sender: linux-crypto-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-crypto@vger.kernel.org Am Dienstag, 25. August 2020, 13:28:53 CEST schrieb kernel test robot: Hi, > All warnings (new ones prefixed by >>): > >> drivers/char/lrng/lrng_drng.c:381:6: warning: no previous prototype for > >> 'lrng_reset' [-Wmissing-prototypes] > 381 | void lrng_reset(void) > > | ^~~~~~~~~~ The prototype is covered in an ifdef in lrng_internal.h as it is only needed for a specific configuration. I have moved the prototype out of that configuration conditional now. Thanks. Ciao Stephan From mboxrd@z Thu Jan 1 00:00:00 1970 Content-Type: multipart/mixed; boundary="===============8872633631054116628==" MIME-Version: 1.0 From: Stephan Mueller To: kbuild-all@lists.01.org Subject: Re: [PATCH v34 01/12] Linux Random Number Generator Date: Tue, 25 Aug 2020 13:51:19 +0200 Message-ID: <6658249.kC03pvyZki@tauon.chronox.de> In-Reply-To: <202008251912.50LKcRvL%lkp@intel.com> List-Id: --===============8872633631054116628== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Am Dienstag, 25. August 2020, 13:28:53 CEST schrieb kernel test robot: Hi, > All warnings (new ones prefixed by >>): > >> drivers/char/lrng/lrng_drng.c:381:6: warning: no previous prototype for > >> 'lrng_reset' [-Wmissing-prototypes] > 381 | void lrng_reset(void) > = > | ^~~~~~~~~~ The prototype is covered in an ifdef in lrng_internal.h as it is only neede= d = for a specific configuration. I have moved the prototype out of that = configuration conditional now. Thanks. Ciao Stephan --===============8872633631054116628==--