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=-14.0 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS autolearn=unavailable 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 384B7C433F5 for ; Sun, 19 Sep 2021 02:06:26 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 16960610A8 for ; Sun, 19 Sep 2021 02:06:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235948AbhISCEW (ORCPT ); Sat, 18 Sep 2021 22:04:22 -0400 Received: from conssluserg-04.nifty.com ([210.131.2.83]:43165 "EHLO conssluserg-04.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S240861AbhISCEF (ORCPT ); Sat, 18 Sep 2021 22:04:05 -0400 Received: from mail-pj1-f43.google.com (mail-pj1-f43.google.com [209.85.216.43]) (authenticated) by conssluserg-04.nifty.com with ESMTP id 18J22RRX028484; Sun, 19 Sep 2021 11:02:27 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conssluserg-04.nifty.com 18J22RRX028484 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1632016948; bh=IeRqbMvP0VMKoofeV7jzNf72c4TwrPCoerRwTS9X3mk=; h=References:In-Reply-To:From:Date:Subject:To:Cc:From; b=owDY/Lk5Mfi0jGsYwuAZneWCwZjYeoUTMwOCCaJMcH1KQG9uBDeXCNQ1hCOZ0K1pu Vw1IWYjfytbeJ/1PJ6G7LOgbRBF0Go9y0zPbrCU5NwiUx3qOnvWv7wuqkoP57uKM6u fxqE9mpf4i4hKYt8xRB+pzGxCRIWSvV4X7yJAzeZDemBzslZb3q79EL3HYtOBzs/Tt xXNMjI/WuAkiDZCCI90VakyQyy8XiSNEs1YYX56SJ3OdQZAjcs3ihtWoLjHuEdqCv5 wLWCOStxIxvKYx8n83WgbmhzrIh5/2pRFHXKXA3LSrvbBaVB+4IPtw/xfhyANwgELa gmBMNuZ7gkhMA== X-Nifty-SrcIP: [209.85.216.43] Received: by mail-pj1-f43.google.com with SMTP id k23so9591026pji.0; Sat, 18 Sep 2021 19:02:27 -0700 (PDT) X-Gm-Message-State: AOAM530s8mep3QbfdLyU/XonMLvZCTh6f57B8yfwJEhVjGlHJu/vVmv6 P7+ip8Br5eOh6+pbBr17iG9YGnbSMNa8VK4ZlpU= X-Google-Smtp-Source: ABdhPJzvq4KrpyJbKQpq6RNH/kBkU2R1w1VAyWxsnb3PAl7gr2l60rQ5zzuxK68Rim9etMHNFvuvw2z50sY6nlIlo+g= X-Received: by 2002:a17:90a:192:: with SMTP id 18mr30092740pjc.119.1632016947055; Sat, 18 Sep 2021 19:02:27 -0700 (PDT) MIME-Version: 1.0 References: <20210916092122.2374583-1-ramjiyani@google.com> In-Reply-To: <20210916092122.2374583-1-ramjiyani@google.com> From: Masahiro Yamada Date: Sun, 19 Sep 2021 11:01:50 +0900 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [PATCH] kbuild: Fix comment typo in scripts/Makefile.modpost To: Ramji Jiyani Cc: Michal Marek , Nick Desaulniers , Linux Kbuild mailing list , Linux Kernel Mailing List Content-Type: text/plain; charset="UTF-8" Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Sep 16, 2021 at 6:21 PM Ramji Jiyani wrote: > > Change comment "create one .mod.c file pr. module" > to "create one .mod.c file per module" > > Signed-off-by: Ramji Jiyani > --- > scripts/Makefile.modpost | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Applied to linux-kbuild. Thanks. > diff --git a/scripts/Makefile.modpost b/scripts/Makefile.modpost > index eef56d629799..48585c4d04ad 100644 > --- a/scripts/Makefile.modpost > +++ b/scripts/Makefile.modpost > @@ -13,7 +13,7 @@ > # Stage 2 is handled by this file and does the following > # 1) Find all modules listed in modules.order > # 2) modpost is then used to > -# 3) create one .mod.c file pr. module > +# 3) create one .mod.c file per module > # 4) create one Module.symvers file with CRC for all exported symbols > > # Step 3 is used to place certain information in the module's ELF > -- > 2.33.0.309.g3052b89438-goog > -- Best Regards Masahiro Yamada