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 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 624EAC433F5 for ; Mon, 11 Oct 2021 15:37:28 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 4890860C49 for ; Mon, 11 Oct 2021 15:37:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S243668AbhJKPjW (ORCPT ); Mon, 11 Oct 2021 11:39:22 -0400 Received: from mail.kernel.org ([198.145.29.99]:56938 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S243701AbhJKPjP (ORCPT ); Mon, 11 Oct 2021 11:39:15 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 4B54F60C49; Mon, 11 Oct 2021 15:37:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1633966634; bh=FYqUw2kqkpM1DyrtfaYbrUz43GROjaDL9qhLZeZKSHs=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=bnEwP3jXLhW/kkBdFK240IKzVDBWwrB2McxnaSed+2Q7aZcTB1gefyv+On5HW7XpK +C7MON9sKw+5Rsw9mIROp1BMU6c8cnUKxTman4S83uX8tU/IYRARhfHz6Ot3XMnUYh 5ZcvTV+sket4R6EyIIXIbP5gPwtSNLFrQXYi78C8= Date: Mon, 11 Oct 2021 17:37:09 +0200 From: Greg Kroah-Hartman To: Vegard Nossum Cc: Arnd Bergmann , linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org Subject: Re: [PATCH] staging: ks7010: select CRYPTO_HASH/CRYPTO_MICHAEL_MIC Message-ID: References: <20211011152941.12847-1-vegard.nossum@oracle.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20211011152941.12847-1-vegard.nossum@oracle.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Oct 11, 2021 at 05:29:41PM +0200, Vegard Nossum wrote: > Fix the following build/link errors: > > ld: drivers/staging/ks7010/ks_hostif.o: in function `michael_mic.constprop.0': > ks_hostif.c:(.text+0x95b): undefined reference to `crypto_alloc_shash' > ld: ks_hostif.c:(.text+0x97a): undefined reference to `crypto_shash_setkey' > ld: ks_hostif.c:(.text+0xa13): undefined reference to `crypto_shash_update' > ld: ks_hostif.c:(.text+0xa28): undefined reference to `crypto_shash_update' > ld: ks_hostif.c:(.text+0xa48): undefined reference to `crypto_shash_finup' > ld: ks_hostif.c:(.text+0xa6d): undefined reference to `crypto_destroy_tfm' > > Signed-off-by: Vegard Nossum > --- > drivers/staging/ks7010/Kconfig | 3 +++ > 1 file changed, 3 insertions(+) What commit caused these issues? thanks, greg k-h