* [PATCH v6 1/3] staging: vt6655: line over 80 characters.
@ 2019-03-29 23:31 Vatsala Narang
2019-03-30 6:47 ` [Outreachy kernel] " Julia Lawall
2019-03-30 8:25 ` Greg KH
0 siblings, 2 replies; 5+ messages in thread
From: Vatsala Narang @ 2019-03-29 23:31 UTC (permalink / raw)
To: outreachy-kernel; +Cc: gregkh, Vatsala Narang
Move function arguments that go over 80 characters a line to get rid of
checkpatch warning.
Signed-off-by: Vatsala Narang <vatsalanarang@gmail.com>
---
Changes in v6:
-fixed patch 1 and resent it
drivers/staging/vt6655/rf.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/vt6655/rf.c b/drivers/staging/vt6655/rf.c
index 72475586a5ee..ad3970333390 100644
--- a/drivers/staging/vt6655/rf.c
+++ b/drivers/staging/vt6655/rf.c
@@ -748,7 +748,7 @@ bool RFvWriteWakeProgSyn(struct vnt_private *priv, unsigned char byRFType,
}
MACvSetMISCFifo(priv, MISCFIFO_SYNINFO_IDX,
- (unsigned long)MAKEWORD(bySleepCount, byInitCount));
+ (unsigned long)MAKEWORD(bySleepCount, byInitCount));
return true;
}
--
2.17.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Outreachy kernel] [PATCH v6 1/3] staging: vt6655: line over 80 characters.
2019-03-29 23:31 [PATCH v6 1/3] staging: vt6655: line over 80 characters Vatsala Narang
@ 2019-03-30 6:47 ` Julia Lawall
2019-03-30 12:59 ` Vatsala Narang
2019-03-30 8:25 ` Greg KH
1 sibling, 1 reply; 5+ messages in thread
From: Julia Lawall @ 2019-03-30 6:47 UTC (permalink / raw)
To: Vatsala Narang; +Cc: outreachy-kernel, gregkh
On Sat, 30 Mar 2019, Vatsala Narang wrote:
> Move function arguments that go over 80 characters a line to get rid of
> checkpatch warning.
>
> Signed-off-by: Vatsala Narang <vatsalanarang@gmail.com>
> ---
> Changes in v6:
> -fixed patch 1 and resent it
> drivers/staging/vt6655/rf.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/vt6655/rf.c b/drivers/staging/vt6655/rf.c
> index 72475586a5ee..ad3970333390 100644
> --- a/drivers/staging/vt6655/rf.c
> +++ b/drivers/staging/vt6655/rf.c
> @@ -748,7 +748,7 @@ bool RFvWriteWakeProgSyn(struct vnt_private *priv, unsigned char byRFType,
> }
>
> MACvSetMISCFifo(priv, MISCFIFO_SYNINFO_IDX,
> - (unsigned long)MAKEWORD(bySleepCount, byInitCount));
> + (unsigned long)MAKEWORD(bySleepCount, byInitCount));
The two lines look the same, although there are probably spacing
differences. I think you have the wrong log message for this patch.
julia
>
> return true;
> }
> --
> 2.17.1
>
> --
> 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/20190329233147.27039-1-vatsalanarang%40gmail.com.
> For more options, visit https://groups.google.com/d/optout.
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Outreachy kernel] [PATCH v6 1/3] staging: vt6655: line over 80 characters.
2019-03-30 6:47 ` [Outreachy kernel] " Julia Lawall
@ 2019-03-30 12:59 ` Vatsala Narang
0 siblings, 0 replies; 5+ messages in thread
From: Vatsala Narang @ 2019-03-30 12:59 UTC (permalink / raw)
To: outreachy-kernel
[-- Attachment #1.1: Type: text/plain, Size: 820 bytes --]
> Changes in v6:
> > -fixed patch 1 and resent it
> > drivers/staging/vt6655/rf.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> >
> > MACvSetMISCFifo(priv, MISCFIFO_SYNINFO_IDX,
> > - (unsigned long)MAKEWORD(bySleepCount,
> byInitCount));
> > + (unsigned long)MAKEWORD(bySleepCount,
> byInitCount));
>
> The two lines look the same, although there are probably spacing
> differences. I think you have the wrong log message for this patch.
>
> julia
>
> Apart from this when I rebased the earlier patch it was corrupted with
multiple lines that were not present in the file,so I also removed those
lines and i don't know why its not visible here .Anyways I will send this
again with correct log message.
thanks
Vatsala
[-- Attachment #1.2: Type: text/html, Size: 1111 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v6 1/3] staging: vt6655: line over 80 characters.
2019-03-29 23:31 [PATCH v6 1/3] staging: vt6655: line over 80 characters Vatsala Narang
2019-03-30 6:47 ` [Outreachy kernel] " Julia Lawall
@ 2019-03-30 8:25 ` Greg KH
2019-03-30 12:43 ` Vatsala Narang
1 sibling, 1 reply; 5+ messages in thread
From: Greg KH @ 2019-03-30 8:25 UTC (permalink / raw)
To: Vatsala Narang; +Cc: outreachy-kernel
On Sat, Mar 30, 2019 at 05:01:47AM +0530, Vatsala Narang wrote:
> Move function arguments that go over 80 characters a line to get rid of
> checkpatch warning.
>
> Signed-off-by: Vatsala Narang <vatsalanarang@gmail.com>
> ---
> Changes in v6:
> -fixed patch 1 and resent it
> drivers/staging/vt6655/rf.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Where are the other 3 patches in this series?
If you have to resend just one patch, just send one, but do not imply
that it is a longer series. Remember, maintainers have almost no
context as they deal with hundreds of patches. I have the short term
memory of a squirrel :)
greg k-h
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2019-03-30 12:59 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-03-29 23:31 [PATCH v6 1/3] staging: vt6655: line over 80 characters Vatsala Narang
2019-03-30 6:47 ` [Outreachy kernel] " Julia Lawall
2019-03-30 12:59 ` Vatsala Narang
2019-03-30 8:25 ` Greg KH
2019-03-30 12:43 ` Vatsala Narang
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.