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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id B202ECDB465 for ; Thu, 19 Oct 2023 15:32:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1346086AbjJSPcB (ORCPT ); Thu, 19 Oct 2023 11:32:01 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43594 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1345747AbjJSPcA (ORCPT ); Thu, 19 Oct 2023 11:32:00 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9648FCF for ; Thu, 19 Oct 2023 08:31:58 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id D633EC433C7; Thu, 19 Oct 2023 15:31:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1697729518; bh=b1u5ZZNo1Vy3uUena6xiBCZRIVHTFi+/MiagIVA8ebs=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=T2y01kszfN+Ghq7P6SJtsHreDmU25roecuHM2LiTIhwVzEg/6ftFiNpyd0oboJCvq r7NHszGvqfI/c/QArEidv5lOqfYHDWZnIOwL6H+1gDIFLCJ/GUpD9Jd2wYaocT3w8f zO85i7XPkvys7ebC14PTdjSnlKutshxqUAAlKF+Y= Date: Thu, 19 Oct 2023 17:31:55 +0200 From: Greg Kroah-Hartman To: Karolina Stolarek Cc: Soumya Negi , Martyn Welch , Manohar Vanga , Andi Shyti , Julia Lawall , outreachy@lists.linux.dev, linux-kernel@vger.kernel.org, linux-staging@lists.linux.dev Subject: Re: [PATCH v2 1/2] staging: vme_user: Replace printk() with pr_*(),dev_*() Message-ID: <2023101939-portable-spoof-5fa0@gregkh> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Oct 19, 2023 at 12:45:30PM +0200, Karolina Stolarek wrote: > On 19.10.2023 09:20, Soumya Negi wrote: > > vme.c uses printk() to log messages. To improve and standardize message > > formatting, use logging mechanisms pr_err()/pr_warn() and > > dev_err()/dev_warn() instead. Retain the printk log levels of the > > messages during replacement. > > > > Issue found by checkpatch.pl > > > > Signed-off-by: Soumya Negi > > --- > > Changes in v2: > > * Change the pr_*() calls used to replace printk's in v1 to dev_*() > > wherever possible, as it adds more context to the message. > > (as per feedback from julia.lawall@inria.fr & > > gregkh@linuxfoundation.org) > > You don't have to include the change log here, as it's already in the cover > letter. This space is usually used when a patch is not sent as a part of the > series. Either or both is fine, this is not a real issue at all, thanks greg k-h