* [PATCH v4 0/2] Fix checkpatch.pl issues
@ 2019-03-02 19:04 Madhumitha Prabakaran
2019-03-02 19:04 ` [PATCH v4 1/2] Staging: vt6655: Fix comment style of SPDX License Identifier Madhumitha Prabakaran
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Madhumitha Prabakaran @ 2019-03-02 19:04 UTC (permalink / raw)
To: forest, gregkh, outreachy-kernel; +Cc: Madhumitha Prabakaran
This patchset fixes the comment styles of SPDX-License Identifier based
on License Identifier syntax.
Madhumitha Prabakaran (2):
Staging: vt6655: channel.h: Fix comment style of SPDX License Identifier
Staging: vt6655: desc.h: Fix comment style of SPDX License Identifier
---
Changes in v4-
-Fixed matches in subject lines of the patches
Changes in v3-
- Fixed commit log and version number
Changes in v2-
-Included cover letter in patch set
drivers/staging/vt6655/channel.h | 2 +-
drivers/staging/vt6655/desc.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
--
2.17.1
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH v4 1/2] Staging: vt6655: Fix comment style of SPDX License Identifier 2019-03-02 19:04 [PATCH v4 0/2] Fix checkpatch.pl issues Madhumitha Prabakaran @ 2019-03-02 19:04 ` Madhumitha Prabakaran 2019-03-02 19:04 ` [PATCH v4 2/2] " Madhumitha Prabakaran 2019-03-02 21:18 ` [PATCH v4 0/2] Fix checkpatch.pl issues Greg KH 2 siblings, 0 replies; 7+ messages in thread From: Madhumitha Prabakaran @ 2019-03-02 19:04 UTC (permalink / raw) To: forest, gregkh, outreachy-kernel; +Cc: Madhumitha Prabakaran Fix comment style of SPDX License Identifier for header file type based on License Identifier syntax. Signed-off-by: Madhumitha Prabakaran <madhumithabiw@gmail.com> --- drivers/staging/vt6655/channel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/vt6655/channel.h b/drivers/staging/vt6655/channel.h index 53f623a4af65..0d2709607456 100644 --- a/drivers/staging/vt6655/channel.h +++ b/drivers/staging/vt6655/channel.h @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: GPL-2.0+ +/* SPDX-License-Identifier: GPL-2.0+ */ /* * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc. * All rights reserved. -- 2.17.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH v4 2/2] Staging: vt6655: Fix comment style of SPDX License Identifier 2019-03-02 19:04 [PATCH v4 0/2] Fix checkpatch.pl issues Madhumitha Prabakaran 2019-03-02 19:04 ` [PATCH v4 1/2] Staging: vt6655: Fix comment style of SPDX License Identifier Madhumitha Prabakaran @ 2019-03-02 19:04 ` Madhumitha Prabakaran 2019-03-02 21:18 ` [PATCH v4 0/2] Fix checkpatch.pl issues Greg KH 2 siblings, 0 replies; 7+ messages in thread From: Madhumitha Prabakaran @ 2019-03-02 19:04 UTC (permalink / raw) To: forest, gregkh, outreachy-kernel; +Cc: Madhumitha Prabakaran Fix comment style of SPDX License Identifier for header file type based on License Identifier syntax. Signed-off-by: Madhumitha Prabakaran <madhumithabiw@gmail.com> --- drivers/staging/vt6655/desc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/vt6655/desc.h b/drivers/staging/vt6655/desc.h index b4a0037b40c1..d4572847b08a 100644 --- a/drivers/staging/vt6655/desc.h +++ b/drivers/staging/vt6655/desc.h @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: GPL-2.0+ +/* SPDX-License-Identifier: GPL-2.0+ */ /* * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc. * All rights reserved. -- 2.17.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v4 0/2] Fix checkpatch.pl issues 2019-03-02 19:04 [PATCH v4 0/2] Fix checkpatch.pl issues Madhumitha Prabakaran 2019-03-02 19:04 ` [PATCH v4 1/2] Staging: vt6655: Fix comment style of SPDX License Identifier Madhumitha Prabakaran 2019-03-02 19:04 ` [PATCH v4 2/2] " Madhumitha Prabakaran @ 2019-03-02 21:18 ` Greg KH 2019-03-03 2:06 ` Madhumthia Prabakaran 2019-03-03 5:21 ` Madhumthia Prabakaran 2 siblings, 2 replies; 7+ messages in thread From: Greg KH @ 2019-03-02 21:18 UTC (permalink / raw) To: Madhumitha Prabakaran; +Cc: forest, outreachy-kernel On Sat, Mar 02, 2019 at 01:04:25PM -0600, Madhumitha Prabakaran wrote: > This patchset fixes the comment styles of SPDX-License Identifier based > on License Identifier syntax. > > Madhumitha Prabakaran (2): > Staging: vt6655: channel.h: Fix comment style of SPDX License Identifier > Staging: vt6655: desc.h: Fix comment style of SPDX License Identifier Again, these look fine. Now go look at the subject lines of the patches you sent out. It does not match these. Something is really wrong with either how you are generating this message, or the patches, it does not make sense at all. They should always match up identically as git should do it all for you. Please try sending the series to only yourself next, to verify you got it right, before sending it to everyone. thanks, greg k-h ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v4 0/2] Fix checkpatch.pl issues 2019-03-02 21:18 ` [PATCH v4 0/2] Fix checkpatch.pl issues Greg KH @ 2019-03-03 2:06 ` Madhumthia Prabakaran 2019-03-03 5:21 ` Madhumthia Prabakaran 1 sibling, 0 replies; 7+ messages in thread From: Madhumthia Prabakaran @ 2019-03-03 2:06 UTC (permalink / raw) To: Greg KH, outreachy-kernel On Sat, Mar 02, 2019 at 10:18:50PM +0100, Greg KH wrote: > On Sat, Mar 02, 2019 at 01:04:25PM -0600, Madhumitha Prabakaran wrote: > > This patchset fixes the comment styles of SPDX-License Identifier based > > on License Identifier syntax. > > > > Madhumitha Prabakaran (2): > > Staging: vt6655: channel.h: Fix comment style of SPDX License Identifier > > Staging: vt6655: desc.h: Fix comment style of SPDX License Identifier > > Again, these look fine. > > Now go look at the subject lines of the patches you sent out. It does > not match these. > > Something is really wrong with either how you are generating this > message, or the patches, it does not make sense at all. They should > always match up identically as git should do it all for you. > > Please try sending the series to only yourself next, to verify you got > it right, before sending it to everyone. > > thanks, > > greg k-h Re: [PATCH v4 0/2] Fix checkpatch.pl issues Will fix it and resend it. thanks, madhumitha ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v4 0/2] Fix checkpatch.pl issues 2019-03-02 21:18 ` [PATCH v4 0/2] Fix checkpatch.pl issues Greg KH 2019-03-03 2:06 ` Madhumthia Prabakaran @ 2019-03-03 5:21 ` Madhumthia Prabakaran 2019-03-03 6:16 ` [Outreachy kernel] " Julia Lawall 1 sibling, 1 reply; 7+ messages in thread From: Madhumthia Prabakaran @ 2019-03-03 5:21 UTC (permalink / raw) To: Greg KH, outreachy-kernel On Sat, Mar 02, 2019 at 10:18:50PM +0100, Greg KH wrote: > On Sat, Mar 02, 2019 at 01:04:25PM -0600, Madhumitha Prabakaran wrote: > > This patchset fixes the comment styles of SPDX-License Identifier based > > on License Identifier syntax. > > > > Madhumitha Prabakaran (2): > > Staging: vt6655: channel.h: Fix comment style of SPDX License Identifier > > Staging: vt6655: desc.h: Fix comment style of SPDX License Identifier > > Again, these look fine. > > Now go look at the subject lines of the patches you sent out. It does > not match these. > > Something is really wrong with either how you are generating this > message, or the patches, it does not make sense at all. They should > always match up identically as git should do it all for you. > > Please try sending the series to only yourself next, to verify you got > it right, before sending it to everyone. > > thanks, > > greg k-h I fixed this using the below link. https://wiki.umbc.edu/pages/viewpage.action?pageId=1867916. please correct me if I'm wrong Thanks Madhumitha ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Outreachy kernel] Re: [PATCH v4 0/2] Fix checkpatch.pl issues 2019-03-03 5:21 ` Madhumthia Prabakaran @ 2019-03-03 6:16 ` Julia Lawall 0 siblings, 0 replies; 7+ messages in thread From: Julia Lawall @ 2019-03-03 6:16 UTC (permalink / raw) To: Madhumthia Prabakaran; +Cc: Greg KH, outreachy-kernel On Sat, 2 Mar 2019, Madhumthia Prabakaran wrote: > On Sat, Mar 02, 2019 at 10:18:50PM +0100, Greg KH wrote: > > On Sat, Mar 02, 2019 at 01:04:25PM -0600, Madhumitha Prabakaran wrote: > > > This patchset fixes the comment styles of SPDX-License Identifier based > > > on License Identifier syntax. > > > > > > Madhumitha Prabakaran (2): > > > Staging: vt6655: channel.h: Fix comment style of SPDX License Identifier > > > Staging: vt6655: desc.h: Fix comment style of SPDX License Identifier > > > > Again, these look fine. > > > > Now go look at the subject lines of the patches you sent out. It does > > not match these. > > > > Something is really wrong with either how you are generating this > > message, or the patches, it does not make sense at all. They should > > always match up identically as git should do it all for you. > > > > Please try sending the series to only yourself next, to verify you got > > it right, before sending it to everyone. > > > > thanks, > > > > greg k-h > > I fixed this using the below link. https://wiki.umbc.edu/pages/viewpage.action?pageId=1867916. Not sure to see any connection. julia > > please correct me if I'm wrong > > Thanks > > Madhumitha > > -- > You received this message because you are subscribed to the Google Groups "outreachy-kernel" group. > To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@googlegroups.com. > To post to this group, send email to outreachy-kernel@googlegroups.com. > To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/20190303052106.GA31969%40madhuleo. > For more options, visit https://groups.google.com/d/optout. > ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2019-03-03 6:16 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-03-02 19:04 [PATCH v4 0/2] Fix checkpatch.pl issues Madhumitha Prabakaran 2019-03-02 19:04 ` [PATCH v4 1/2] Staging: vt6655: Fix comment style of SPDX License Identifier Madhumitha Prabakaran 2019-03-02 19:04 ` [PATCH v4 2/2] " Madhumitha Prabakaran 2019-03-02 21:18 ` [PATCH v4 0/2] Fix checkpatch.pl issues Greg KH 2019-03-03 2:06 ` Madhumthia Prabakaran 2019-03-03 5:21 ` Madhumthia Prabakaran 2019-03-03 6:16 ` [Outreachy kernel] " Julia Lawall
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.