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=-8.6 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,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 E8DD8C388F7 for ; Mon, 9 Nov 2020 13:40:48 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id A2D1A20658 for ; Mon, 9 Nov 2020 13:40:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1604929248; bh=+VdWaxHs53uvHZ4NxwqLvFRNZhIN+FlD0P6Qe12XBLY=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=fPm6yEy3hcA5FVpLw3q71419P40ZKToRbmbyalQEaqbDjd5I84Sb3qKOAdiNyUJu0 q1Vl2Ad0NFRzacr0df7OBdMjLR3Phm2AmHiAoKRxXM+F9ho6wE19Ssmer3XanmH/QX FUvCuKvhbcgb3Uo5EZV4xC90E6Oc19kxxZG44YOo= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731136AbgKINkr (ORCPT ); Mon, 9 Nov 2020 08:40:47 -0500 Received: from mail.kernel.org ([198.145.29.99]:35390 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730602AbgKINkp (ORCPT ); Mon, 9 Nov 2020 08:40:45 -0500 Received: from linux-8ccs.fritz.box (p57a236d4.dip0.t-ipconnect.de [87.162.54.212]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 70B58206CB; Mon, 9 Nov 2020 13:40:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1604929244; bh=+VdWaxHs53uvHZ4NxwqLvFRNZhIN+FlD0P6Qe12XBLY=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=UHmRwpRfWj1GCfp4m6XlHgP72EKV+XCxsn8k1IKyIayfoky+JcDXfmV/oMIj7Urnq iJY1x+nlspn+KmDTqN6Nyh9RUVFZLXlsYWJj1PRj2tzW+LkAAodZdyOdrW4T2UZidV uC/eje6XrGRRmRb4qVrg82uNbDSxavVBAoRABO0k= Date: Mon, 9 Nov 2020 14:40:39 +0100 From: Jessica Yu To: Sergey Shtylyov Cc: linux-kernel@vger.kernel.org Subject: Re: [PATCH v2] module: fix comment style Message-ID: <20201109134036.GB24810@linux-8ccs.fritz.box> References: <7cabd5fd-e413-9b71-004e-56c9c329de23@omprussia.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <7cabd5fd-e413-9b71-004e-56c9c329de23@omprussia.ru> X-OS: Linux linux-8ccs 4.12.14-lp150.12.61-default x86_64 User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org +++ Sergey Shtylyov [07/11/20 23:20 +0300]: >Many comments in this module do not comply with the preferred multi-line >comment style as reported by 'scripts/checkpatch.pl': > >WARNING: Block comments use * on subsequent lines >WARNING: Block comments use a trailing */ on a separate line > >Fix those comments, along with (unreported for some reason?) the starts >of the multi-line comments not being /* on their own line... > >Signed-off-by: Sergey Shtylyov > >--- >This patch is against the 'modules-next' branch of Jessica Yu's 'linux.git' >repo plus my 2 patches posted this week. >I'm not sure such patches are welcome, please let me know if they're not... > >Changes in version 2: >- fixed up the comment before find_symbol(). Applied, thanks for the comment cleanups! Jessica