* [PATCH 0/3] Staging: fbtft: Fix Various Checkpatch issues
@ 2019-02-21 15:19 Bhanusree Pola
2019-02-21 16:01 ` Greg Kroah-Hartman
0 siblings, 1 reply; 4+ messages in thread
From: Bhanusree Pola @ 2019-02-21 15:19 UTC (permalink / raw)
To: outreachy-kernel; +Cc: Greg Kroah-Hartman
This series cleans the following checkpatch.pl issues:
CHECK: Extra blank line not required before closing brace '}'
WARNING:EXPORT_SYMBOL(foo); should follow its function/variable
WARNING:line over 80 characters
Bhanusree Pola (3):
Staging: fbtft: Remove extra blank line before '}'
Staging: fbtf: Declare Exprot symbols immediately
Staging: fbtft: Fix line over 80 characters warning
drivers/staging/fbtft/fbtft-core.c | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
--
2.17.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 0/3] Staging: fbtft: Fix Various Checkpatch issues
2019-02-21 15:19 [PATCH 0/3] Staging: fbtft: Fix Various Checkpatch issues Bhanusree Pola
@ 2019-02-21 16:01 ` Greg Kroah-Hartman
2019-02-21 16:05 ` Bhanusree Mahesh
0 siblings, 1 reply; 4+ messages in thread
From: Greg Kroah-Hartman @ 2019-02-21 16:01 UTC (permalink / raw)
To: Bhanusree Pola; +Cc: outreachy-kernel
On Thu, Feb 21, 2019 at 08:49:18PM +0530, Bhanusree Pola wrote:
> This series cleans the following checkpatch.pl issues:
>
> CHECK: Extra blank line not required before closing brace '}'
> WARNING:EXPORT_SYMBOL(foo); should follow its function/variable
> WARNING:line over 80 characters
>
> Bhanusree Pola (3):
> Staging: fbtft: Remove extra blank line before '}'
> Staging: fbtf: Declare Exprot symbols immediately
> Staging: fbtft: Fix line over 80 characters warning
>
> drivers/staging/fbtft/fbtft-core.c | 11 +++++------
> 1 file changed, 5 insertions(+), 6 deletions(-)
Your patches are not "threaded", like I asked for last time. How are
you sending these out? git send-email should do it automatically.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 0/3] Staging: fbtft: Fix Various Checkpatch issues
2019-02-21 16:01 ` Greg Kroah-Hartman
@ 2019-02-21 16:05 ` Bhanusree Mahesh
2019-02-21 16:14 ` Greg Kroah-Hartman
0 siblings, 1 reply; 4+ messages in thread
From: Bhanusree Mahesh @ 2019-02-21 16:05 UTC (permalink / raw)
To: Greg Kroah-Hartman; +Cc: outreachy-kernel
On Thu, 21 Feb 2019 at 21:31, Greg Kroah-Hartman
<gregkh@linuxfoundation.org> wrote:
>
> On Thu, Feb 21, 2019 at 08:49:18PM +0530, Bhanusree Pola wrote:
> > This series cleans the following checkpatch.pl issues:
> >
> > CHECK: Extra blank line not required before closing brace '}'
> > WARNING:EXPORT_SYMBOL(foo); should follow its function/variable
> > WARNING:line over 80 characters
> >
> > Bhanusree Pola (3):
> > Staging: fbtft: Remove extra blank line before '}'
> > Staging: fbtf: Declare Exprot symbols immediately
> > Staging: fbtft: Fix line over 80 characters warning
> >
> > drivers/staging/fbtft/fbtft-core.c | 11 +++++------
> > 1 file changed, 5 insertions(+), 6 deletions(-)
>
> Your patches are not "threaded", like I asked for last time. How are
> you sending these out? git send-email should do it automatically.
>
i'm sending each patch separately using mutt.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 0/3] Staging: fbtft: Fix Various Checkpatch issues
2019-02-21 16:05 ` Bhanusree Mahesh
@ 2019-02-21 16:14 ` Greg Kroah-Hartman
0 siblings, 0 replies; 4+ messages in thread
From: Greg Kroah-Hartman @ 2019-02-21 16:14 UTC (permalink / raw)
To: Bhanusree Mahesh; +Cc: outreachy-kernel
On Thu, Feb 21, 2019 at 09:35:29PM +0530, Bhanusree Mahesh wrote:
> On Thu, 21 Feb 2019 at 21:31, Greg Kroah-Hartman
> <gregkh@linuxfoundation.org> wrote:
> >
> > On Thu, Feb 21, 2019 at 08:49:18PM +0530, Bhanusree Pola wrote:
> > > This series cleans the following checkpatch.pl issues:
> > >
> > > CHECK: Extra blank line not required before closing brace '}'
> > > WARNING:EXPORT_SYMBOL(foo); should follow its function/variable
> > > WARNING:line over 80 characters
> > >
> > > Bhanusree Pola (3):
> > > Staging: fbtft: Remove extra blank line before '}'
> > > Staging: fbtf: Declare Exprot symbols immediately
> > > Staging: fbtft: Fix line over 80 characters warning
> > >
> > > drivers/staging/fbtft/fbtft-core.c | 11 +++++------
> > > 1 file changed, 5 insertions(+), 6 deletions(-)
> >
> > Your patches are not "threaded", like I asked for last time. How are
> > you sending these out? git send-email should do it automatically.
> >
> i'm sending each patch separately using mutt.
Ok, when doing that, make sure you properly thread them. You can do
that by "replying" to the previous email you sent, and keeping the
"In-Reply-To:" line in the header.
Or you can use git send-email :)
You might want to get send-email working, as you are sending lots of
patches, it makes things much easier.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-02-21 16:14 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-21 15:19 [PATCH 0/3] Staging: fbtft: Fix Various Checkpatch issues Bhanusree Pola
2019-02-21 16:01 ` Greg Kroah-Hartman
2019-02-21 16:05 ` Bhanusree Mahesh
2019-02-21 16:14 ` Greg Kroah-Hartman
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.