From patchwork Fri Jun 19 17:27:39 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tadeusz Struk X-Patchwork-Id: 6646411 X-Patchwork-Delegate: herbert@gondor.apana.org.au Return-Path: X-Original-To: patchwork-linux-crypto@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 81083C0020 for ; Fri, 19 Jun 2015 17:27:51 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id C39442093A for ; Fri, 19 Jun 2015 17:27:50 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9D9AF2091E for ; Fri, 19 Jun 2015 17:27:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752923AbbFSR1s (ORCPT ); Fri, 19 Jun 2015 13:27:48 -0400 Received: from mga14.intel.com ([192.55.52.115]:41532 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752813AbbFSR1s (ORCPT ); Fri, 19 Jun 2015 13:27:48 -0400 Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP; 19 Jun 2015 10:27:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.13,644,1427785200"; d="scan'208";a="730795004" Received: from kjazzar-mobl.amr.corp.intel.com (HELO [127.0.1.1]) ([10.254.185.167]) by fmsmga001.fm.intel.com with ESMTP; 19 Jun 2015 10:27:47 -0700 Subject: [PATCH] crypto: fix invalid select for AKCIPHER From: Tadeusz Struk To: herbert@gondor.apana.org.au Cc: andreas.ruprecht@fau.de, linux-crypto@vger.kernel.org, tadeusz.struk@intel.com Date: Fri, 19 Jun 2015 10:27:39 -0700 Message-ID: <20150619172739.13509.80660.stgit@tstruk-mobl1> User-Agent: StGit/0.17.1-dirty MIME-Version: 1.0 Sender: linux-crypto-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-crypto@vger.kernel.org X-Spam-Status: No, score=-7.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Should be CRYPTO_AKCIPHER instead of AKCIPHER Reported-by: Andreas Ruprecht Signed-off-by: Tadeusz Struk --- crypto/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe linux-crypto" in diff --git a/crypto/Kconfig b/crypto/Kconfig index 6c79ef0..b4cfc57 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig @@ -102,7 +102,7 @@ config CRYPTO_AKCIPHER config CRYPTO_RSA tristate "RSA algorithm" - select AKCIPHER + select CRYPTO_AKCIPHER select MPILIB select ASN1 help