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=-5.2 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=ham 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 23DA9C3A5A5 for ; Thu, 5 Sep 2019 04:52:49 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id E9E5A206DF for ; Thu, 5 Sep 2019 04:52:48 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="DIICAimP" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org E9E5A206DF Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=gondor.apana.org.au Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=e+7Wpou9qIUSpALlb/ibSkuuJEGpTMSe6byWl2uTmBQ=; b=DIICAimP+Rcg2G HshtAtInx6E/nxhWMNo/v8Bfw7F3XvK8omPGKZYd92MMpSSeWPIP9zZOW0mK3+voPOZEzrvtVYmJz 1QDiudvjCNQYqVHfftRfIbcovBj4dEyTJMkhkebSdyAKS+XvdCofSG8K2T7Dh8q7MTe4VE5EVdbCa I3MY/WitwCOg+gr67ChG+AxL6PZ2nRc0smryL1IQ7tf+GUEFEztr2qwkHVjZejjvTo+bKz/ov8P7i bnvZkB5Z2pl2BXlJrWEpnpNF4EHMBGwA/4RStliftyWBmWTdGQUsWgGrEyz0OcKJbygHH91F/Knyg t+URUIwjPlrASxRrMsZg==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.92 #3 (Red Hat Linux)) id 1i5jlH-0007P6-DP; Thu, 05 Sep 2019 04:52:47 +0000 Received: from [216.24.177.18] (helo=fornost.hmeau.com) by bombadil.infradead.org with esmtps (Exim 4.92 #3 (Red Hat Linux)) id 1i5jlE-0007O2-Bd; Thu, 05 Sep 2019 04:52:46 +0000 Received: from gwarestrin.arnor.me.apana.org.au ([192.168.0.7]) by fornost.hmeau.com with smtp (Exim 4.89 #2 (Debian)) id 1i5jks-0006EF-4s; Thu, 05 Sep 2019 14:52:23 +1000 Received: by gwarestrin.arnor.me.apana.org.au (sSMTP sendmail emulation); Thu, 05 Sep 2019 14:52:18 +1000 Date: Thu, 5 Sep 2019 14:52:18 +1000 From: Herbert Xu To: Vic Wu Subject: Re: [PATCH 1/5] crypto: mediatek: move mtk_aes_find_dev() to the right place Message-ID: <20190905045218.GA32038@gondor.apana.org.au> References: <20190828063716.22689-1-vic.wu@mediatek.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20190828063716.22689-1-vic.wu@mediatek.com> User-Agent: Mutt/1.10.1 (2018-07-13) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20190904_215244_646228_47C6E308 X-CRM114-Status: UNSURE ( 8.64 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Ryder Lee , linux-kernel@vger.kernel.org, linux-mediatek@lists.infradead.org, linux-crypto@vger.kernel.org, "David S . Miller" , linux-arm-kernel@lists.infradead.org Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Wed, Aug 28, 2019 at 02:37:12PM +0800, Vic Wu wrote: > From: Ryder Lee > > Move mtk_aes_find_dev() to right functions as nobody uses the > 'cryp' under current flows. > > We can also avoid duplicate checks here and there in this way. > > Signed-off-by: Ryder Lee > Signed-off-by: Vic Wu > --- > drivers/crypto/mediatek/mtk-aes.c | 39 +++++++++++-------------------- > 1 file changed, 14 insertions(+), 25 deletions(-) All applied. Thanks. -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel