From: Julia Lawall <julia.lawall@lip6.fr>
To: Cristiane Naves <cristianenavescardoso09@gmail.com>
Cc: Greg KH <gregkh@linuxfoundation.org>,
Dan Carpenter <dan.carpenter@oracle.com>,
outreachy-kernel@googlegroups.com
Subject: Re: [Outreachy kernel] Re: [PATCH v3 1/2] staging: rtl8712: Fix Alignment of open parenthesis
Date: Wed, 30 Oct 2019 06:58:05 +0100 (CET) [thread overview]
Message-ID: <alpine.DEB.2.21.1910300657461.2471@hadrien> (raw)
In-Reply-To: <20191029210642.GA14913@cristiane-Inspiron-5420>
On Tue, 29 Oct 2019, Cristiane Naves wrote:
> On Tue, Oct 29, 2019 at 09:59:31PM +0100, Julia Lawall wrote:
> >
> >
> > On Tue, 29 Oct 2019, Cristiane Naves wrote:
> >
> > > On Tue, Oct 29, 2019 at 09:15:01AM +0100, Greg KH wrote:
> > > > On Tue, Oct 29, 2019 at 09:05:54AM +0100, Greg KH wrote:
> > > > > On Mon, Oct 28, 2019 at 06:21:37PM -0300, Cristiane Naves wrote:
> > > > > > On Mon, Oct 28, 2019 at 10:02:59PM +0300, Dan Carpenter wrote:
> > > > > > > On Mon, Oct 28, 2019 at 12:15:52PM -0300, Cristiane Naves wrote:
> > > > > > > > Fix alignment should match open parenthesis. Issue found by checkpatch.
> > > > > > > >
> > > > > > > > Signed-off-by: Cristiane Naves <cristianenavescardoso09@gmail.com>
> > > > > > > > ---
> > > > > > > > drivers/staging/rtl8712/rtl8712_recv.c | 36 +++++++++++++++++-----------------
> > > > > > > > 1 file changed, 18 insertions(+), 18 deletions(-)
> > > > > > > >
> > > > > > > > diff --git a/drivers/staging/rtl8712/rtl8712_recv.c b/drivers/staging/rtl8712/rtl8712_recv.c
> > > > > > > > index af12c16..304d031 100644
> > > > > > > > --- a/drivers/staging/rtl8712/rtl8712_recv.c
> > > > > > > > +++ b/drivers/staging/rtl8712/rtl8712_recv.c
> > > > > > > > @@ -61,13 +61,13 @@ void r8712_init_recv_priv(struct recv_priv *precvpriv,
> > > > > > > > precvbuf->ref_cnt = 0;
> > > > > > > > precvbuf->adapter = padapter;
> > > > > > > > list_add_tail(&precvbuf->list,
> > > > > > > > - &(precvpriv->free_recv_buf_queue.queue));
> > > > > > > > + (&precvpriv->free_recv_buf_queue.queue));
> > > > > > >
> > > > > > > You did this correctly in v2.
> > > > > > >
> > > > > > > - &(precvpriv->free_recv_buf_queue.queue));
> > > > > > > + &precvpriv->free_recv_buf_queue.queue);
> > > > > > >
> > > > > > > > precvbuf++;
> > > > > > > > }
> > > > > > > > precvpriv->free_recv_buf_queue_cnt = NR_RECVBUFF;
> > > > > > > > tasklet_init(&precvpriv->recv_tasklet,
> > > > > > >
> > > > > > > regards,
> > > > > > > dan carpenter
> > > > > > >
> > > > > > I wondered if it was better to use parentheses or not. Is it necessary
> > > > > > to send a new v5 version containing this change or it's possible to get it from
> > > > > > v2?
> > > > >
> > > > > Send a follow-on patch to fix this up please as your other one is in my
> > > > > tree now I think.
> > > >
> > > > Or maybe it isn't in my tree, I have no idea, I can't remember. YOu
> > > > know if it is applied or not as you will get an email when it happens.
> > > >
> > > > thanks,
> > > >
> > > > greg k-h
> > >
> > > I received an email with the subject patch "staging: rtl8712: Remove
> > > lines before a close brace" added to staging-next on October 27th. Is
> > > this the confirmation email when a patch is accepted or is there any
> > > other email?
> >
> > No, that means it's good.
> >
> > julia
> >
> So when do I know if a patch has been accepted or not? Is When An
> Acked-By Is Placed?
No, when you get the mail from Greg.
julia
> > >
> > > thanks,
> > >
> > > Cristiane Naves
> > >
> > > --
> > > 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 view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/20191029202157.GA2188%40cristiane-Inspiron-5420.
> > >
>
> --
> 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 view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/20191029210642.GA14913%40cristiane-Inspiron-5420.
>
next prev parent reply other threads:[~2019-10-30 5:58 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-28 15:12 [PATCH v3 0/2] Cleanup in rtl8712 Cristiane Naves
2019-10-28 15:15 ` [PATCH v3 1/2] staging: rtl8712: Fix Alignment of open parenthesis Cristiane Naves
2019-10-28 19:02 ` Dan Carpenter
2019-10-28 21:21 ` Cristiane Naves
2019-10-29 7:51 ` Dan Carpenter
2019-10-29 8:05 ` [Outreachy kernel] " Greg KH
2019-10-29 8:15 ` Greg KH
2019-10-29 20:21 ` Cristiane Naves
2019-10-29 20:59 ` Julia Lawall
2019-10-29 21:06 ` Cristiane Naves
2019-10-30 5:58 ` Julia Lawall [this message]
2019-10-30 4:29 ` Dan Carpenter
2019-10-28 15:17 ` [PATCH v3 2/2] staging: rtl8712: Remove lines before a close brace Cristiane Naves
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=alpine.DEB.2.21.1910300657461.2471@hadrien \
--to=julia.lawall@lip6.fr \
--cc=cristianenavescardoso09@gmail.com \
--cc=dan.carpenter@oracle.com \
--cc=gregkh@linuxfoundation.org \
--cc=outreachy-kernel@googlegroups.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.