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 D0195C61DA4 for ; Sat, 11 Mar 2023 12:55:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230511AbjCKMzZ (ORCPT ); Sat, 11 Mar 2023 07:55:25 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51694 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229819AbjCKMzX (ORCPT ); Sat, 11 Mar 2023 07:55:23 -0500 Received: from mail2-relais-roc.national.inria.fr (mail2-relais-roc.national.inria.fr [192.134.164.83]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5C2251009EE for ; Sat, 11 Mar 2023 04:55:21 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inria.fr; s=dc; h=date:from:to:cc:subject:in-reply-to:message-id: references:mime-version; bh=bI9XVtudhiGObX5Xjo5yuLSTfAHgHL+jaTd4yxThz9E=; b=gyUecKJQ9TidEy2D2EHQSrjzoqmW6xumu8PjMRG4Rv5iOGfWn0Pscs9a ic2qezuy++8DYIVNKoXwnLBz/JUQUk/+bPWkJYWh0eNNwWS05HgMmXClK LEDBJ+xtQMsPCsOwMyPKeYRnTFnpJcqBg/KRo/fT05bpx0+hVAQ2LZFZz M=; Authentication-Results: mail2-relais-roc.national.inria.fr; dkim=none (message not signed) header.i=none; spf=SoftFail smtp.mailfrom=julia.lawall@inria.fr; dmarc=fail (p=none dis=none) d=inria.fr X-IronPort-AV: E=Sophos;i="5.98,252,1673910000"; d="scan'208";a="96643328" Received: from 231.85.89.92.rev.sfr.net (HELO hadrien) ([92.89.85.231]) by mail2-relais-roc.national.inria.fr with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 11 Mar 2023 13:55:19 +0100 Date: Sat, 11 Mar 2023 13:55:19 +0100 (CET) From: Julia Lawall X-X-Sender: jll@hadrien To: Menna Mahmoud cc: outreachy@lists.linux.dev, vireshk@kernel.org, johan@kernel.org, elder@kernel.org, gregkh@linuxfoundation.org, greybus-dev@lists.linaro.org, linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/2] staging: greybus: Fix Alignment with parenthesis In-Reply-To: <71211670-60f9-11f4-1ee7-f94d4d9df4fb@gmail.com> Message-ID: References: <71211670-60f9-11f4-1ee7-f94d4d9df4fb@gmail.com> User-Agent: Alpine 2.22 (DEB 394 2020-01-19) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="8323329-602893840-1678539319=:2802" Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --8323329-602893840-1678539319=:2802 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8BIT On Sat, 11 Mar 2023, Menna Mahmoud wrote: > > On ١١/٣/٢٠٢٣ ١٠:٥٩, Julia Lawall wrote: > > > > On Fri, 10 Mar 2023, Menna Mahmoud wrote: > > > > > Fix " CHECK: Alignment should match open parenthesis " > > > Reported by checkpath > > See the message in the other mail about the log message. > > > > Also, you should not have two patches with the same subject. Here, the > > changes are on the same file and are essentially the same, even involving > > the same function call. So they can be together in one patch. > > > > julia > okay, I will. appreciate your feedback. thanks. Please put some blank lines around your response, so it is easier to find. thanks, julia > > > > > Signed-off-by: Menna Mahmoud > > > --- > > > drivers/staging/greybus/fw-core.c | 2 +- > > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > > > diff --git a/drivers/staging/greybus/fw-core.c > > > b/drivers/staging/greybus/fw-core.c > > > index 57bebf24636b..f562cb12d5ad 100644 > > > --- a/drivers/staging/greybus/fw-core.c > > > +++ b/drivers/staging/greybus/fw-core.c > > > @@ -89,7 +89,7 @@ static int gb_fw_core_probe(struct gb_bundle *bundle, > > > } > > > > > > connection = gb_connection_create(bundle, cport_id, > > > - gb_fw_mgmt_request_handler); > > > + > > > gb_fw_mgmt_request_handler); > > > if (IS_ERR(connection)) { > > > ret = PTR_ERR(connection); > > > dev_err(&bundle->dev, > > > -- > > > 2.34.1 > > > > > > > > > > --8323329-602893840-1678539319=:2802--