public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 2/4] staging: greybus: fixed styling issue in fw-management.c
@ 2026-02-04 18:30 Rachit Dhar
  2026-02-07 13:37 ` Greg Kroah-Hartman
  0 siblings, 1 reply; 4+ messages in thread
From: Rachit Dhar @ 2026-02-04 18:30 UTC (permalink / raw)
  To: Viresh Kumar
  Cc: Johan Hovold, Alex Elder, Greg Kroah-Hartman, greybus-dev,
	linux-staging, linux-kernel, Rachit Dhar

Fixed a styling issue highlighted by checkpatch.pl.

Signed-off-by: Rachit Dhar <rchtdhr@gmail.com>
---
 drivers/staging/greybus/fw-management.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/staging/greybus/fw-management.c b/drivers/staging/greybus/fw-management.c
index 07a0e6b63cf3..cf917ddb79c4 100644
--- a/drivers/staging/greybus/fw-management.c
+++ b/drivers/staging/greybus/fw-management.c
@@ -434,7 +434,8 @@ static int fw_mgmt_ioctl(struct fw_mgmt *fw_mgmt, unsigned int cmd,
 			return -EFAULT;
 
 		ret = fw_mgmt_load_and_validate_operation(fw_mgmt,
-				intf_load.load_method, intf_load.firmware_tag);
+							  intf_load.load_method,
+							  intf_load.firmware_tag);
 		if (ret)
 			return ret;
 
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v3 2/4] staging: greybus: fixed styling issue in fw-management.c
  2026-02-04 18:30 [PATCH v3 2/4] staging: greybus: fixed styling issue in fw-management.c Rachit Dhar
@ 2026-02-07 13:37 ` Greg Kroah-Hartman
  2026-02-16  5:03   ` Rachit Dhar
  0 siblings, 1 reply; 4+ messages in thread
From: Greg Kroah-Hartman @ 2026-02-07 13:37 UTC (permalink / raw)
  To: Rachit Dhar
  Cc: Viresh Kumar, Johan Hovold, Alex Elder, greybus-dev,
	linux-staging, linux-kernel

On Wed, Feb 04, 2026 at 06:30:33PM +0000, Rachit Dhar wrote:
> Fixed a styling issue highlighted by checkpatch.pl.

What specific style issue was fixed?  Please be specific.

Also, your patches were not correctly linked together.  Please use
something like 'git send-email' to send them all at once.  Otherwise
they get lost and out-of-order as you can see in the email archives on
lore.kernel.org.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v3 2/4] staging: greybus: fixed styling issue in fw-management.c
  2026-02-07 13:37 ` Greg Kroah-Hartman
@ 2026-02-16  5:03   ` Rachit Dhar
  2026-02-23 13:53     ` Greg Kroah-Hartman
  0 siblings, 1 reply; 4+ messages in thread
From: Rachit Dhar @ 2026-02-16  5:03 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Viresh Kumar, Johan Hovold, Alex Elder, greybus-dev,
	linux-staging, linux-kernel

On Sat, Feb 7, 2026 at 7:08 PM Greg Kroah-Hartman
<gregkh@linuxfoundation.org> wrote:
>
> What specific style issue was fixed?  Please be specific.
>
> Also, your patches were not correctly linked together.  Please use
> something like 'git send-email' to send them all at once.  Otherwise
> they get lost and out-of-order as you can see in the email archives on
> lore.kernel.org.

The style issue fixed was for the following checkpatch check:

CHECK: Alignment should match open parenthesis
#437: FILE: drivers/staging/greybus/fw-management.c:437:
+               ret = fw_mgmt_load_and_validate_operation(fw_mgmt,
+                               intf_load.load_method, intf_load.firmware_tag);

Thanks for pointing out the issue of out-of-order patches.
I did use git send-email, but did so for each patch separately,
which might have led to this. If I should send another patch series
to correct this, please let me know.

Thanks,
Rachit

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v3 2/4] staging: greybus: fixed styling issue in fw-management.c
  2026-02-16  5:03   ` Rachit Dhar
@ 2026-02-23 13:53     ` Greg Kroah-Hartman
  0 siblings, 0 replies; 4+ messages in thread
From: Greg Kroah-Hartman @ 2026-02-23 13:53 UTC (permalink / raw)
  To: Rachit Dhar
  Cc: Viresh Kumar, Johan Hovold, Alex Elder, greybus-dev,
	linux-staging, linux-kernel

On Mon, Feb 16, 2026 at 10:33:59AM +0530, Rachit Dhar wrote:
> On Sat, Feb 7, 2026 at 7:08 PM Greg Kroah-Hartman
> <gregkh@linuxfoundation.org> wrote:
> >
> > What specific style issue was fixed?  Please be specific.
> >
> > Also, your patches were not correctly linked together.  Please use
> > something like 'git send-email' to send them all at once.  Otherwise
> > they get lost and out-of-order as you can see in the email archives on
> > lore.kernel.org.
> 
> The style issue fixed was for the following checkpatch check:
> 
> CHECK: Alignment should match open parenthesis
> #437: FILE: drivers/staging/greybus/fw-management.c:437:
> +               ret = fw_mgmt_load_and_validate_operation(fw_mgmt,
> +                               intf_load.load_method, intf_load.firmware_tag);
> 
> Thanks for pointing out the issue of out-of-order patches.
> I did use git send-email, but did so for each patch separately,
> which might have led to this. If I should send another patch series
> to correct this, please let me know.

I can't take these as-is, so yes, please rebase and resend the remaining
ones.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-02-23 13:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-04 18:30 [PATCH v3 2/4] staging: greybus: fixed styling issue in fw-management.c Rachit Dhar
2026-02-07 13:37 ` Greg Kroah-Hartman
2026-02-16  5:03   ` Rachit Dhar
2026-02-23 13:53     ` Greg Kroah-Hartman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox