lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Thu, 29 Jan 2015 10:01:17 +0800
From:	Peter Hung <hpeter@...il.com>
To:	Sergei Shtylyov <sergei.shtylyov@...entembedded.com>,
	johan@...nel.org
CC:	gregkh@...uxfoundation.org, linux-usb@...r.kernel.org,
	linux-kernel@...r.kernel.org, tom_tsai@...tek.com.tw,
	peter_hong@...tek.com.tw,
	Peter Hung <hpeter+linux_kernel@...il.com>
Subject: Re: [PATCH v3 5/5] usb: serial: implement CMSPAR for F81232

Hello.

I had using "scripts/checkpatch.pl -f" to scan original f81232.c.
It reported with "quoted string split across lines", so I merge these
2 strings into 1 in patch 1/5. But it still warning with "line over 80 
character", so I had shorted string with this line.

I will refine my patch set again with more attention.
Thanks for your advice.

Sergei Shtylyov 於 2015/1/28 下午 08:31 寫道:
> Hello.
>
> On 1/28/2015 8:58 AM, Peter Hung wrote:
>
>> This patch implement CMSPAR in set_termios,
>> and fix some warnning from checkpatch.pl
>
>      Please don't try to do 2 unrelated things in one patch.
>
>> Signed-off-by: Peter Hung <hpeter+linux_kernel@...il.com>
>> ---
>>   drivers/usb/serial/f81232.c | 21 +++++++++++++++------
>>   1 file changed, 15 insertions(+), 6 deletions(-)
>
>> diff --git a/drivers/usb/serial/f81232.c b/drivers/usb/serial/f81232.c
>> index 11a236b..79592d6 100644
>> --- a/drivers/usb/serial/f81232.c
>> +++ b/drivers/usb/serial/f81232.c
> [...]
>> @@ -361,12 +361,21 @@ static void f81232_set_termios(struct tty_struct
>> *tty,
>>
>>
>>       if (cflag & PARENB) {
>> -        if (cflag & PARODD)
>> -            new_lcr |= UART_LCR_PARITY; /* odd */
>> -        else
>> -            new_lcr |= SERIAL_EVEN_PARITY; /* even */
>> +        if (cflag & CMSPAR) {
>> +            if (cflag & PARODD)
>> +                new_lcr |= (UART_LCR_PARITY | UART_LCR_SPAR);
>> +            else
>> +                new_lcr |= (SERIAL_EVEN_PARITY
>> +                            | UART_LCR_SPAR);
>> +        } else {
>> +            if (cflag & PARODD)
>> +                new_lcr |= UART_LCR_PARITY; /* odd */
>> +            else
>> +                new_lcr |= SERIAL_EVEN_PARITY; /* even */
>> +        }
>>       }
>>
>> +
>
>     Not needed at all.
>
>>       if (cflag & CSTOPB)
>>           new_lcr |= UART_LCR_STOP;
>>       else
>> @@ -445,7 +454,7 @@ static int f81232_open(struct tty_struct *tty,
>> struct usb_serial_port *port)
>>
>>       result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
>>       if (result) {
>> -        dev_err(&port->dev, "failed submitting interrupt urb, error
>> %d\n",
>> +        dev_err(&port->dev, "failed submitting urb, error %d\n",
>
>     What are you fixing here?
>
> WBR, Sergei
>

-- 
With Best Regards,
Peter Hung
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ