lkml.org 
[lkml]   [2022]   [Jan]   [13]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH] Bugfix RTS line config in RS485 mode is overwritten in pl011_set_mctrl() function.
On Thu, Jan 13, 2022 at 11:12:12AM +0100, Jochen Mades wrote:
> Hi Lukas,
>
> > Patch is correct, but commit message could be improved:
> >
> > * Subject should be in imperative mood (by convention), it should be
> > prepended by "serial: pl011: " (in line with previous commits touching
> > this driver, use "git log --oneline amba-pl011.c") and the trailing dot
> > is unnecessary, e.g.:
> >
> > "serial: pl011: Fix incorrect rs485 RTS polarity on set_mctrl"
> >
> > * Commit message should be wrapped at 72 characters (so that it appears
> > centered when displayed with "git log" on an 80 chars terminal).
> > The reference to "0001-serial-amba-pl011-add-RS485-support.patch"
> > should be replaced with a reference to the offending commit, e.g.:
> >
> > "Commit 8d479237727c ("serial: amba-pl011: add RS485 support") sought
> > to keep RTS deasserted on set_mctrl if rs485 is enabled. However it
> > did so only if deasserted RTS polarity is high. Fix it in case it's
> > low."
> >
> > Feel free to copy this to a v2 of your patch and amend as you see fit.
> >
>
> Find attached the patch with the new subject and corretced commit message.
>
> > * Add tags for the offending commit:
> >
> > Fixes: 8d479237727c ("serial: amba-pl011: add RS485 support")
> > Cc: stable@vger.kernel.org # v5.15+
> >
> > * Be sure to cc the author of the offending commit.
>
> Sorry I don't know how to do that correctly. Can you please give support/hints?
>
>
> > Thanks,
> >
> > Lukas
> >
> > > ---
> > > drivers/tty/serial/amba-pl011.c | 8 ++++++--
> > > 1 file changed, 6 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/drivers/tty/serial/amba-pl011.c b/drivers/tty/serial/amba-pl011.c
> > > index 537f37ac4..1749c1498 100644
> > > --- a/drivers/tty/serial/amba-pl011.c
> > > +++ b/drivers/tty/serial/amba-pl011.c
> > > @@ -1646,8 +1646,12 @@ static void pl011_set_mctrl(struct uart_port *port, unsigned int mctrl)
> > > container_of(port, struct uart_amba_port, port);
> > > unsigned int cr;
> > >
> > > - if (port->rs485.flags & SER_RS485_ENABLED)
> > > - mctrl &= ~TIOCM_RTS;
> > > + if (port->rs485.flags & SER_RS485_ENABLED) {
> > > + if (port->rs485.flags & SER_RS485_RTS_AFTER_SEND)
> > > + mctrl &= ~TIOCM_RTS;
> > > + else
> > > + mctrl |= TIOCM_RTS;
> > > + }
> > >
> > > cr = pl011_read(uap, REG_CR);


Hi,

This is the friendly patch-bot of Greg Kroah-Hartman. You have sent him
a patch that has triggered this response. He used to manually respond
to these common problems, but in order to save his sanity (he kept
writing the same thing over and over, yet to different people), I was
created. Hopefully you will not take offence and will fix the problem
in your patch and resubmit it so that it can be accepted into the Linux
kernel tree.

You are receiving this message because of the following common error(s)
as indicated below:

- Your patch was attached, please place it inline so that it can be
applied directly from the email message itself.

- It looks like you did not use your "real" name for the patch on either
the Signed-off-by: line, or the From: line (both of which have to
match). Please read the kernel file, Documentation/SubmittingPatches
for how to do this correctly.

If you wish to discuss this problem further, or you have questions about
how to resolve this issue, please feel free to respond to this email and
Greg will reply once he has dug out from the pending patches received
from other developers.

thanks,

greg k-h's patch email bot

\
 
 \ /
  Last update: 2022-01-13 11:20    [W:0.100 / U:0.484 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site