Re: [PATCH v3 4/6] drivers: hv: vmbus: Fix checkpatch SPLIT_STRING

2020-12-02 Thread Wei Liu
On Sun, Nov 29, 2020 at 09:43:28PM -0800, Stephen Hemminger wrote: > On Sun, 29 Nov 2020 08:51:47 -0800 > "Michael Kelley" wrote: > > > From: Matheus Castello Sent: Tuesday, November > > 24, 2020 7:29 PM > > > > > > Checkpatch emits WARNING: quoted string split across lines. > > > To keep the

Re: [PATCH v3 4/6] drivers: hv: vmbus: Fix checkpatch SPLIT_STRING

2020-11-29 Thread Stephen Hemminger
On Sun, 29 Nov 2020 08:51:47 -0800 "Michael Kelley" wrote: > From: Matheus Castello Sent: Tuesday, November > 24, 2020 7:29 PM > > > > Checkpatch emits WARNING: quoted string split across lines. > > To keep the code clean and with the 80 column length indentation the > > check and registration

RE: [PATCH v3 4/6] drivers: hv: vmbus: Fix checkpatch SPLIT_STRING

2020-11-29 Thread Michael Kelley
From: Matheus Castello Sent: Tuesday, November 24, 2020 7:29 PM > > Checkpatch emits WARNING: quoted string split across lines. > To keep the code clean and with the 80 column length indentation the > check and registration code for kmsg_dump_register has been transferred > to a new function

[PATCH v3 4/6] drivers: hv: vmbus: Fix checkpatch SPLIT_STRING

2020-11-24 Thread Matheus Castello
Checkpatch emits WARNING: quoted string split across lines. To keep the code clean and with the 80 column length indentation the check and registration code for kmsg_dump_register has been transferred to a new function hv_kmsg_dump_register. Signed-off-by: Matheus Castello --- This is the V3 of