From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id E1A4D1361 for ; Thu, 28 Apr 2022 15:45:54 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2F236C385A0; Thu, 28 Apr 2022 15:45:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1651160754; bh=jlixZfnqmKwsIrnN9lsthFcR9XPCemSMhABH6wF5Vak=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Ckfl7IiSrlKHBmTeTl558CK6CyJAsU1xYpPEtird+WEKuZGZKLJvgpQmzIv9iWu7d PRLSIIojMl9MyOjlMrHEMuhr/f4XrTZQbtNwP7RcZb5wwFQB8qK9+5QNa32JjjUgy6 SUjX6eeRPaoaXtvlA0tqf9Zdh2SbZM79fJJvYajU= Date: Thu, 28 Apr 2022 17:45:51 +0200 From: Greg Kroah-Hartman To: Adrien Thierry Cc: Nicolas Saenz Julienne , bcm-kernel-feedback-list@broadcom.com, linux-rpi-kernel@lists.infradead.org, linux-arm-kernel@lists.infradead.org, linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2] staging: vchiq_arm: use standard print helpers Message-ID: References: <20220428150550.261499-1-athierry@redhat.com> Precedence: bulk X-Mailing-List: linux-staging@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: On Thu, Apr 28, 2022 at 05:23:17PM +0200, Greg Kroah-Hartman wrote: > On Thu, Apr 28, 2022 at 11:05:49AM -0400, Adrien Thierry wrote: > > Replace the custom debug print macros with the standard dev_err() and > > friends. > > > > This handles TODO item "Cleanup logging mechanism". > > > > Signed-off-by: Adrien Thierry > > --- > > > > Changes since v1: removed function name in dev_dbg() calls > > > > .../interface/vchiq_arm/vchiq_arm.c | 157 +++--- > > .../interface/vchiq_arm/vchiq_connected.c | 7 +- > > .../interface/vchiq_arm/vchiq_connected.h | 4 +- > > .../interface/vchiq_arm/vchiq_core.c | 495 ++++++++---------- > > .../interface/vchiq_arm/vchiq_core.h | 43 +- > > .../interface/vchiq_arm/vchiq_debugfs.c | 105 ---- > > .../interface/vchiq_arm/vchiq_dev.c | 86 ++- > > 7 files changed, 341 insertions(+), 556 deletions(-) > > Try doing this in smaller chunks. There's a lot of churn here, and not > all of it is correct. > > Try removing these one-function-at-a-time and then when it's all > finished, you can remove the debugfs and function calls as no one is > calling them. That is one function you are replacing at a time, not to do this one function you are cleaning up in the source at a time. If that makes sense. Awkward wording...