All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] staging: wlan-ng: malformed SPDX license and typo
@ 2019-03-20 17:22 Branden Bonaby
  2019-03-20 17:22 ` [PATCH 1/2] staging: wlan-ng: malformed SPDX-License-Identifier Branden Bonaby
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Branden Bonaby @ 2019-03-20 17:22 UTC (permalink / raw)
  To: gregkh; +Cc: Branden Bonaby, outreachy-kernel

This patchset corrects a malformed SPDX-License-Identifier
so that it conforms to the rest of the comment style in
the Linux Kernel. It also corrects a typo in one of the
comments for better readability.

Branden Bonaby (2):
  staging: wlan-ng: malformed SPDX-License-Identifier
  staging: wlan-ng: Correct typo in comment message

 drivers/staging/wlan-ng/hfa384x_usb.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
2.17.1



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

* [PATCH 1/2] staging: wlan-ng: malformed SPDX-License-Identifier
  2019-03-20 17:22 [PATCH 0/2] staging: wlan-ng: malformed SPDX license and typo Branden Bonaby
@ 2019-03-20 17:22 ` Branden Bonaby
  2019-03-21 21:19   ` Branden Bonaby
  2019-03-20 17:22 ` [PATCH 2/2] staging: wlan-ng: Correct typo in comment message Branden Bonaby
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 8+ messages in thread
From: Branden Bonaby @ 2019-03-20 17:22 UTC (permalink / raw)
  To: gregkh; +Cc: Branden Bonaby, outreachy-kernel

Correct malformed SPDX-License-Identifier so that it
matches Linux kernel comment coding style.

Signed-off-by: Branden Bonaby <brandonbonaby94@gmail.com>
---
 drivers/staging/wlan-ng/hfa384x_usb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/wlan-ng/hfa384x_usb.c b/drivers/staging/wlan-ng/hfa384x_usb.c
index 6261881e9bcd..75acdfc30f6a 100644
--- a/drivers/staging/wlan-ng/hfa384x_usb.c
+++ b/drivers/staging/wlan-ng/hfa384x_usb.c
@@ -1,4 +1,4 @@
-// SPDX-License-Identifier: (GPL-2.0 OR MPL-1.1)
+/* SPDX-License-Identifier: (GPL-2.0 OR MPL-1.1) */
 /* src/prism2/driver/hfa384x_usb.c
  *
  * Functions that talk to the USB variantof the Intersil hfa384x MAC
-- 
2.17.1



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

* [PATCH 2/2] staging: wlan-ng: Correct typo in comment message
  2019-03-20 17:22 [PATCH 0/2] staging: wlan-ng: malformed SPDX license and typo Branden Bonaby
  2019-03-20 17:22 ` [PATCH 1/2] staging: wlan-ng: malformed SPDX-License-Identifier Branden Bonaby
@ 2019-03-20 17:22 ` Branden Bonaby
  2019-03-21 21:20   ` Branden Bonaby
  2019-03-21 21:18 ` [PATCH 0/2] staging: wlan-ng: malformed SPDX license and typo Branden Bonaby
  2019-04-14  9:09 ` sbrandyn34
  3 siblings, 1 reply; 8+ messages in thread
From: Branden Bonaby @ 2019-03-20 17:22 UTC (permalink / raw)
  To: gregkh; +Cc: Branden Bonaby, outreachy-kernel

Add space between two words for better readability in the
comments.

Signed-off-by: Branden Bonaby <brandonbonaby94@gmail.com>
---
 drivers/staging/wlan-ng/hfa384x_usb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/wlan-ng/hfa384x_usb.c b/drivers/staging/wlan-ng/hfa384x_usb.c
index 75acdfc30f6a..81a6b0324641 100644
--- a/drivers/staging/wlan-ng/hfa384x_usb.c
+++ b/drivers/staging/wlan-ng/hfa384x_usb.c
@@ -1,7 +1,7 @@
 /* SPDX-License-Identifier: (GPL-2.0 OR MPL-1.1) */
 /* src/prism2/driver/hfa384x_usb.c
  *
- * Functions that talk to the USB variantof the Intersil hfa384x MAC
+ * Functions that talk to the USB variant of the Intersil hfa384x MAC
  *
  * Copyright (C) 1999 AbsoluteValue Systems, Inc.  All Rights Reserved.
  * --------------------------------------------------------------------
-- 
2.17.1



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

* Re: [PATCH 0/2] staging: wlan-ng: malformed SPDX license and typo
  2019-03-20 17:22 [PATCH 0/2] staging: wlan-ng: malformed SPDX license and typo Branden Bonaby
  2019-03-20 17:22 ` [PATCH 1/2] staging: wlan-ng: malformed SPDX-License-Identifier Branden Bonaby
  2019-03-20 17:22 ` [PATCH 2/2] staging: wlan-ng: Correct typo in comment message Branden Bonaby
@ 2019-03-21 21:18 ` Branden Bonaby
  2019-04-14  9:09 ` sbrandyn34
  3 siblings, 0 replies; 8+ messages in thread
From: Branden Bonaby @ 2019-03-21 21:18 UTC (permalink / raw)
  To: gregkh; +Cc: outreachy-kernel

On Wed, Mar 20, 2019 at 12:53:21PM -0400, Branden Bonaby wrote:
> This patchset corrects a malformed SPDX-License-Identifier
> so that it conforms to the rest of the comment style in
> the Linux Kernel. It also corrects a typo in one of the
> comments for better readability.
> 
> Branden Bonaby (2):
>   staging: wlan-ng: malformed SPDX-License-Identifier
>   staging: wlan-ng: Correct typo in comment message
> 
>  drivers/staging/wlan-ng/hfa384x_usb.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> -- 
> 2.17.1
> 

Hi 

Please ignore this, it sent again after resuming my VM.
The patch has already been accepted.

Thank you 


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

* Re: [PATCH 1/2] staging: wlan-ng: malformed SPDX-License-Identifier
  2019-03-20 17:22 ` [PATCH 1/2] staging: wlan-ng: malformed SPDX-License-Identifier Branden Bonaby
@ 2019-03-21 21:19   ` Branden Bonaby
  0 siblings, 0 replies; 8+ messages in thread
From: Branden Bonaby @ 2019-03-21 21:19 UTC (permalink / raw)
  To: gregkh; +Cc: outreachy-kernel

On Wed, Mar 20, 2019 at 12:53:22PM -0400, Branden Bonaby wrote:
> Correct malformed SPDX-License-Identifier so that it
> matches Linux kernel comment coding style.
> 
> Signed-off-by: Branden Bonaby <brandonbonaby94@gmail.com>
> ---
>  drivers/staging/wlan-ng/hfa384x_usb.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/staging/wlan-ng/hfa384x_usb.c b/drivers/staging/wlan-ng/hfa384x_usb.c
> index 6261881e9bcd..75acdfc30f6a 100644
> --- a/drivers/staging/wlan-ng/hfa384x_usb.c
> +++ b/drivers/staging/wlan-ng/hfa384x_usb.c
> @@ -1,4 +1,4 @@
> -// SPDX-License-Identifier: (GPL-2.0 OR MPL-1.1)
> +/* SPDX-License-Identifier: (GPL-2.0 OR MPL-1.1) */
>  /* src/prism2/driver/hfa384x_usb.c
>   *
>   * Functions that talk to the USB variantof the Intersil hfa384x MAC
> -- 
> 2.17.1
>

Hi

Please ignore this, it sent again after resuming my VM.
The patch has already been accepted.

Thank you



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

* Re: [PATCH 2/2] staging: wlan-ng: Correct typo in comment message
  2019-03-20 17:22 ` [PATCH 2/2] staging: wlan-ng: Correct typo in comment message Branden Bonaby
@ 2019-03-21 21:20   ` Branden Bonaby
  2019-04-10  7:39     ` sbrandyn34
  0 siblings, 1 reply; 8+ messages in thread
From: Branden Bonaby @ 2019-03-21 21:20 UTC (permalink / raw)
  To: gregkh; +Cc: outreachy-kernel

On Wed, Mar 20, 2019 at 12:53:23PM -0400, Branden Bonaby wrote:
> Add space between two words for better readability in the
> comments.
> 
> Signed-off-by: Branden Bonaby <brandonbonaby94@gmail.com>
> ---
>  drivers/staging/wlan-ng/hfa384x_usb.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/staging/wlan-ng/hfa384x_usb.c b/drivers/staging/wlan-ng/hfa384x_usb.c
> index 75acdfc30f6a..81a6b0324641 100644
> --- a/drivers/staging/wlan-ng/hfa384x_usb.c
> +++ b/drivers/staging/wlan-ng/hfa384x_usb.c
> @@ -1,7 +1,7 @@
>  /* SPDX-License-Identifier: (GPL-2.0 OR MPL-1.1) */
>  /* src/prism2/driver/hfa384x_usb.c
>   *
> - * Functions that talk to the USB variantof the Intersil hfa384x MAC
> + * Functions that talk to the USB variant of the Intersil hfa384x MAC
>   *
>   * Copyright (C) 1999 AbsoluteValue Systems, Inc.  All Rights Reserved.
>   * --------------------------------------------------------------------
> -- 
> 2.17.1
>

Hi

Please ignore this, it was sent again after resuming my VM.
The patch was already accepted 

thank you


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

* Re: [PATCH 2/2] staging: wlan-ng: Correct typo in comment message
  2019-03-21 21:20   ` Branden Bonaby
@ 2019-04-10  7:39     ` sbrandyn34
  0 siblings, 0 replies; 8+ messages in thread
From: sbrandyn34 @ 2019-04-10  7:39 UTC (permalink / raw)
  To: outreachy-kernel

[-- Attachment #1: Type: text/plain, Size: 1 bytes --]

J

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

* [PATCH 0/2] staging: wlan-ng: malformed SPDX license and typo
  2019-03-20 17:22 [PATCH 0/2] staging: wlan-ng: malformed SPDX license and typo Branden Bonaby
                   ` (2 preceding siblings ...)
  2019-03-21 21:18 ` [PATCH 0/2] staging: wlan-ng: malformed SPDX license and typo Branden Bonaby
@ 2019-04-14  9:09 ` sbrandyn34
  3 siblings, 0 replies; 8+ messages in thread
From: sbrandyn34 @ 2019-04-14  9:09 UTC (permalink / raw)
  To: outreachy-kernel

[-- Attachment #1: Type: text/plain, Size: 13 bytes --]

I'm not sure

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

end of thread, other threads:[~2019-04-14  9:23 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-03-20 17:22 [PATCH 0/2] staging: wlan-ng: malformed SPDX license and typo Branden Bonaby
2019-03-20 17:22 ` [PATCH 1/2] staging: wlan-ng: malformed SPDX-License-Identifier Branden Bonaby
2019-03-21 21:19   ` Branden Bonaby
2019-03-20 17:22 ` [PATCH 2/2] staging: wlan-ng: Correct typo in comment message Branden Bonaby
2019-03-21 21:20   ` Branden Bonaby
2019-04-10  7:39     ` sbrandyn34
2019-03-21 21:18 ` [PATCH 0/2] staging: wlan-ng: malformed SPDX license and typo Branden Bonaby
2019-04-14  9:09 ` sbrandyn34

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.