Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1501652
| From | Greg KH <gregkh@linuxfoundation.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] staging: dgnc: Replace CamelCase namings with underscores. |
| Date | 2016-10-17 09:50 +0200 |
| Message-ID | <staQh-wi-1@gated-at.bofh.it> (permalink) |
| References | <ssZBv-1DZ-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Mon, Oct 17, 2016 at 01:13:55AM +0530, Pankaj Bharadiya wrote:
> Replace CamelCase names with underscores to comply with the standard
> kernel coding style.
>
> Signed-off-by: Pankaj Bharadiya <pankaj.bharadiya@gmail.com>
> ---
> drivers/staging/dgnc/dgnc_tty.c | 20 ++++++++++----------
> 1 file changed, 10 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/staging/dgnc/dgnc_tty.c b/drivers/staging/dgnc/dgnc_tty.c
> index ef9a45b..1a21902 100644
> --- a/drivers/staging/dgnc/dgnc_tty.c
> +++ b/drivers/staging/dgnc/dgnc_tty.c
> @@ -45,7 +45,7 @@
> /*
> * internal variables
> */
> -static unsigned char *dgnc_TmpWriteBuf;
> +static unsigned char *dgnc_tmp_write_buf;
Why not just fix the code to not have this variable at all? It's not
correct to have it from what I can tell...
Also, you modify many different variables all at once, can you please
just modify one at a time (one per patch), to make it more obvious it is
correct?
> /*
> * Default transparent print information.
> @@ -69,7 +69,7 @@
> * This defines a raw port at 9600 baud, 8 data bits, no parity,
> * 1 stop bit.
> */
> -static struct ktermios DgncDefaultTermios = {
> +static struct ktermios dgnc_default_termios = {
rename to "default_termios"?
No need to keep the driver name prefix on a static variable, right?
thanks,
greg k-h
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH] staging: dgnc: Replace CamelCase namings with underscores. Pankaj Bharadiya <pankaj.bharadiya@gmail.com> - 2016-10-16 21:50 +0200
Re: [PATCH] staging: dgnc: Replace CamelCase namings with underscores. Greg KH <gregkh@linuxfoundation.org> - 2016-10-17 09:50 +0200
Re: [PATCH] staging: dgnc: Replace CamelCase namings with underscores. Pankaj Bharadiya <pankaj.bharadiya@gmail.com> - 2016-10-18 04:30 +0200
csiph-web