From patchwork Thu Jan 16 17:23:55 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Jason A. Donenfeld" X-Patchwork-Id: 198209 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=-6.9 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU, HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH, MAILING_LIST_MULTI, SIGNED_OFF_BY, SPF_HELO_NONE, SPF_PASS 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 5F403C33CB3 for ; Thu, 16 Jan 2020 18:36:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 27BEE208C3 for ; Thu, 16 Jan 2020 18:36:41 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=zx2c4.com header.i=@zx2c4.com header.b="HaChmZtN" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2389850AbgAPRYI (ORCPT ); Thu, 16 Jan 2020 12:24:08 -0500 Received: from frisell.zx2c4.com ([192.95.5.64]:38265 "EHLO frisell.zx2c4.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1733197AbgAPRYH (ORCPT ); Thu, 16 Jan 2020 12:24:07 -0500 Received: by frisell.zx2c4.com (ZX2C4 Mail Server) with ESMTP id 817523b2; Thu, 16 Jan 2020 16:23:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=zx2c4.com; h=from:to:cc :subject:date:message-id:mime-version:content-transfer-encoding; s=mail; bh=50bNfiEpYG6sVj+x/enmT20pq+8=; b=HaChmZtNljAHfXiuU4oi nTKdEllGn9MOg1FY92BAlaYRF+9CV85OYvMNUBbseZITJ36cvU5dYhy7fVFfogt6 xNpi/rL3u/0VcBtp9qUvnF6LkS7/q5Q9klgEFXkzwtrblC8h0lIq93Vr8c6TSgUT pdmpW//kUgs284tZezRurW2e11v3AIopHwkNARYrWtmS5wlvje6xqa20uQ3WPWSz mOBmfyGnDMkqYTH42S7BW3a4tRl0m5n9sgGYG4IuwXVHaadmfJEKO54eneVRYVHS lzQMgJbeW2CdFCLa65U5hAftmuCGCEnl/OCCmSG3VmBbDPy6M7GEO3PqyiaNHwk+ Gg== Received: by frisell.zx2c4.com (ZX2C4 Mail Server) with ESMTPSA id 6f70810e (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Thu, 16 Jan 2020 16:23:46 +0000 (UTC) From: "Jason A. Donenfeld" To: linux-crypto@vger.kernel.org Cc: "Jason A. Donenfeld" Subject: [PATCH] crypto: x86/poly1305: fix .gitignore typo Date: Thu, 16 Jan 2020 18:23:55 +0100 Message-Id: <20200116172355.13255-1-Jason@zx2c4.com> MIME-Version: 1.0 Sender: linux-crypto-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-crypto@vger.kernel.org Admist the kbuild robot induced changes, the .gitignore file for the generated file wasn't updated with the non-clashing filename. This commit adjusts that. Signed-off-by: Jason A. Donenfeld --- arch/x86/crypto/.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/crypto/.gitignore b/arch/x86/crypto/.gitignore index c406ea6571fa..30be0400a439 100644 --- a/arch/x86/crypto/.gitignore +++ b/arch/x86/crypto/.gitignore @@ -1 +1 @@ -poly1305-x86_64.S +poly1305-x86_64-cryptogams.S