2019-10-06 22:21:28

by Gabriela Bittencourt

[permalink] [raw]
Subject: [PATCH] staging: rtl8712: align arguments with open parenthesis

Cleans up checks of: "Alignment should match open parenthesis"

Signed-off-by: Gabriela Bittencourt <[email protected]>
---
drivers/staging/rtl8712/osdep_service.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8712/osdep_service.h b/drivers/staging/rtl8712/osdep_service.h
index e939c4a954b3..d33ddffb7ad9 100644
--- a/drivers/staging/rtl8712/osdep_service.h
+++ b/drivers/staging/rtl8712/osdep_service.h
@@ -46,7 +46,7 @@ struct __queue {
} while (0)

static inline u32 end_of_queue_search(struct list_head *head,
- struct list_head *plist)
+ struct list_head *plist)
{
return (head == plist);
}
--
2.20.1


2019-10-07 10:29:52

by Greg Kroah-Hartman

[permalink] [raw]
Subject: Re: [PATCH] staging: rtl8712: align arguments with open parenthesis

On Sun, Oct 06, 2019 at 07:20:15PM -0300, Gabriela Bittencourt wrote:
> Cleans up checks of: "Alignment should match open parenthesis"
>
> Signed-off-by: Gabriela Bittencourt <[email protected]>
> ---
> drivers/staging/rtl8712/osdep_service.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)

You sent 2 different patches that do different things, yet have the same
exact subject line :(

Please fix this up and send a patch series, so I know what order in
which to apply your patches.

thanks,

greg k-h