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=-10.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT 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 0424BC49ED6 for ; Wed, 11 Sep 2019 23:00:30 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id C94BE2081B for ; Wed, 11 Sep 2019 23:00:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1568242829; bh=196sFvoWQ7iGU+CxdFPnNRP8OZaKhKGMQ9W8SEpqvq8=; h=From:To:Cc:Subject:Date:List-ID:From; b=PCxuW6A/tAzTBUz8yP4rcOMRfzjptijXPWApG3ewtcoyMHkGs7rmrwQwy5XnC4T4W yp1PIAUP4IIkdNHP+UDTll1qLITe81v9LLsdchtYLeef+q1QOUmWDpkmHxzXgDjfef 1s2AbOyvoyOSc50ivV4/UavPXXX4dN/q//Lb+A+c= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728565AbfIKXA3 (ORCPT ); Wed, 11 Sep 2019 19:00:29 -0400 Received: from mail.kernel.org ([198.145.29.99]:51804 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728384AbfIKXA2 (ORCPT ); Wed, 11 Sep 2019 19:00:28 -0400 Received: from localhost.localdomain (236.31.169.217.in-addr.arpa [217.169.31.236]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 39A442081B; Wed, 11 Sep 2019 23:00:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1568242828; bh=196sFvoWQ7iGU+CxdFPnNRP8OZaKhKGMQ9W8SEpqvq8=; h=From:To:Cc:Subject:Date:From; b=P+QJDyjTQVatkeqst+YOcCpl6/pJfs8dukOsbHnxqy9s2HUTrWGQSsgubT41oPFJE TnzWx6WCnd2GeKdTgYEtl86RHvDYxO0PkG2dAihvyYO4ZX2tmiJb1Rzngku26XWUsn vb8XY60AfiJGqmesht1DJhtX+8R0SGcWOo0P/gnc= From: Will Deacon To: linux-kernel@vger.kernel.org Cc: Will Deacon , Ard Biesheuvel , Jessica Yu Subject: [PATCH] module: Remove leftover '#undef' from export header Date: Thu, 12 Sep 2019 00:00:18 +0100 Message-Id: <20190911230018.20155-1-will@kernel.org> X-Mailer: git-send-email 2.11.0 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit 7290d5809571 ("module: use relative references for __ksymtab entries") converted the '__put' #define into an assembly macro in asm-generic/export.h but forgot to remove the corresponding '#undef'. Remove the leftover '#undef'. Cc: Ard Biesheuvel Cc: Jessica Yu Signed-off-by: Will Deacon --- I spotted this trivial issue when debugging the namespace issue earlier today, so here's the patch. include/asm-generic/export.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/asm-generic/export.h b/include/asm-generic/export.h index 294d6ae785d4..153d9c2ee580 100644 --- a/include/asm-generic/export.h +++ b/include/asm-generic/export.h @@ -57,7 +57,6 @@ __kcrctab_\name: #endif #endif .endm -#undef __put #if defined(CONFIG_TRIM_UNUSED_KSYMS) -- 2.23.0.237.gc6a4ce50a0-goog