Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1423012 > unrolled thread

[PATCH] ALSA: usb-audio: Change structure initialisation to C99 style

Started byAmitoj Kaur Chawla <amitoj1606@gmail.com>
First post2016-06-15 15:30 +0200
Last post2016-06-15 15:40 +0200
Articles 4 — 3 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] ALSA: usb-audio: Change structure initialisation to C99 style Amitoj Kaur Chawla <amitoj1606@gmail.com> - 2016-06-15 15:30 +0200
    Re: [PATCH] ALSA: usb-audio: Change structure initialisation to C99 style Takashi Iwai <tiwai@suse.de> - 2016-06-15 15:30 +0200
      Re: [alsa-devel] [PATCH] ALSA: usb-audio: Change structure initialisation to C99 style Takashi Iwai <tiwai@suse.de> - 2016-06-15 15:40 +0200
      Re: [PATCH] ALSA: usb-audio: Change structure initialisation to C99  style Julia Lawall <julia.lawall@lip6.fr> - 2016-06-15 15:40 +0200

#1423012 — [PATCH] ALSA: usb-audio: Change structure initialisation to C99 style

FromAmitoj Kaur Chawla <amitoj1606@gmail.com>
Date2016-06-15 15:30 +0200
Subject[PATCH] ALSA: usb-audio: Change structure initialisation to C99 style
Message-ID<rKj3j-34D-7@gated-at.bofh.it>
Replace the in order struct initialisation style with explicit field
style.

The Coccinelle semantic patch used to make this change is as follows:

@decl@
identifier i1,fld;
type T;
field list[n] fs;
@@

struct i1 {
 fs
 T fld;
 ...};

@@
identifier decl.i1,i2,decl.fld;
expression e;
position bad.p, bad.fix;
@@

struct i1 i2@p = { ...,
+ .fld = e
- e@fix
 ,...};

Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
---
 sound/usb/mixer_maps.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/sound/usb/mixer_maps.c b/sound/usb/mixer_maps.c
index 1f8fb0d9..9038b2e 100644
--- a/sound/usb/mixer_maps.c
+++ b/sound/usb/mixer_maps.c
@@ -107,8 +107,10 @@ static struct usbmix_name_map extigy_map[] = {
  * e.g. no Master and fake PCM volume
  *			Pavel Mihaylov <bin@bash.info>
  */
-static struct usbmix_dB_map mp3plus_dB_1 = {-4781, 0};	/* just guess */
-static struct usbmix_dB_map mp3plus_dB_2 = {-1781, 618}; /* just guess */
+static struct usbmix_dB_map mp3plus_dB_1 = {.min = -4781, .max = 0};
+						/* just guess */
+static struct usbmix_dB_map mp3plus_dB_2 = {.min = -1781, .max = 618};
+						/* just guess */
 
 static struct usbmix_name_map mp3plus_map[] = {
 	/* 1: IT pcm */
-- 
1.9.1

[toc] | [next] | [standalone]


#1423016

FromTakashi Iwai <tiwai@suse.de>
Date2016-06-15 15:30 +0200
Message-ID<rKj3j-34D-23@gated-at.bofh.it>
In reply to#1423012
On Wed, 15 Jun 2016 15:26:34 +0200,
Amitoj Kaur Chawla wrote:
> 
> Replace the in order struct initialisation style with explicit field
> style.
> 
> The Coccinelle semantic patch used to make this change is as follows:
> 
> @decl@
> identifier i1,fld;
> type T;
> field list[n] fs;
> @@
> 
> struct i1 {
>  fs
>  T fld;
>  ...};
> 
> @@
> identifier decl.i1,i2,decl.fld;
> expression e;
> position bad.p, bad.fix;
> @@
> 
> struct i1 i2@p = { ...,
> + .fld = e
> - e@fix
>  ,...};
> 
> Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
> ---
>  sound/usb/mixer_maps.c | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/sound/usb/mixer_maps.c b/sound/usb/mixer_maps.c
> index 1f8fb0d9..9038b2e 100644
> --- a/sound/usb/mixer_maps.c
> +++ b/sound/usb/mixer_maps.c
> @@ -107,8 +107,10 @@ static struct usbmix_name_map extigy_map[] = {
>   * e.g. no Master and fake PCM volume
>   *			Pavel Mihaylov <bin@bash.info>
>   */
> -static struct usbmix_dB_map mp3plus_dB_1 = {-4781, 0};	/* just guess */
> -static struct usbmix_dB_map mp3plus_dB_2 = {-1781, 618}; /* just guess */
> +static struct usbmix_dB_map mp3plus_dB_1 = {.min = -4781, .max = 0};
> +						/* just guess */
> +static struct usbmix_dB_map mp3plus_dB_2 = {.min = -1781, .max = 618};
> +						/* just guess */

These are simple min/max table, so no big merit to write in such a
way.


thanks,

Takashi

[toc] | [prev] | [next] | [standalone]


#1423021 — Re: [alsa-devel] [PATCH] ALSA: usb-audio: Change structure initialisation to C99 style

FromTakashi Iwai <tiwai@suse.de>
Date2016-06-15 15:40 +0200
SubjectRe: [alsa-devel] [PATCH] ALSA: usb-audio: Change structure initialisation to C99 style
Message-ID<rKjcZ-37G-1@gated-at.bofh.it>
In reply to#1423016
On Wed, 15 Jun 2016 15:31:25 +0200,
Julia Lawall wrote:
> 
> 
> 
> On Wed, 15 Jun 2016, Takashi Iwai wrote:
> 
> > On Wed, 15 Jun 2016 15:26:34 +0200,
> > Amitoj Kaur Chawla wrote:
> > >
> > > Replace the in order struct initialisation style with explicit field
> > > style.
> > >
> > > The Coccinelle semantic patch used to make this change is as follows:
> > >
> > > @decl@
> > > identifier i1,fld;
> > > type T;
> > > field list[n] fs;
> > > @@
> > >
> > > struct i1 {
> > >  fs
> > >  T fld;
> > >  ...};
> > >
> > > @@
> > > identifier decl.i1,i2,decl.fld;
> > > expression e;
> > > position bad.p, bad.fix;
> > > @@
> > >
> > > struct i1 i2@p = { ...,
> > > + .fld = e
> > > - e@fix
> > >  ,...};
> > >
> > > Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
> > > ---
> > >  sound/usb/mixer_maps.c | 6 ++++--
> > >  1 file changed, 4 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/sound/usb/mixer_maps.c b/sound/usb/mixer_maps.c
> > > index 1f8fb0d9..9038b2e 100644
> > > --- a/sound/usb/mixer_maps.c
> > > +++ b/sound/usb/mixer_maps.c
> > > @@ -107,8 +107,10 @@ static struct usbmix_name_map extigy_map[] = {
> > >   * e.g. no Master and fake PCM volume
> > >   *			Pavel Mihaylov <bin@bash.info>
> > >   */
> > > -static struct usbmix_dB_map mp3plus_dB_1 = {-4781, 0};	/* just guess */
> > > -static struct usbmix_dB_map mp3plus_dB_2 = {-1781, 618}; /* just guess */
> > > +static struct usbmix_dB_map mp3plus_dB_1 = {.min = -4781, .max = 0};
> > > +						/* just guess */
> > > +static struct usbmix_dB_map mp3plus_dB_2 = {.min = -1781, .max = 618};
> > > +						/* just guess */
> >
> > These are simple min/max table, so no big merit to write in such a
> > way.
> 
> My understanding is that structures are going to be randomized, so at
> least all global structures need C99 initialization.  Maybe Kees can
> provide further clarification.

If that's the motivation, *please* write it in the patch description.
Otherwise no one can know why such a change becomes mandatory.


thanks,

Takashi

[toc] | [prev] | [next] | [standalone]


#1423026 — Re: [PATCH] ALSA: usb-audio: Change structure initialisation to C99 style

FromJulia Lawall <julia.lawall@lip6.fr>
Date2016-06-15 15:40 +0200
SubjectRe: [PATCH] ALSA: usb-audio: Change structure initialisation to C99 style
Message-ID<rKjcZ-37G-3@gated-at.bofh.it>
In reply to#1423016

On Wed, 15 Jun 2016, Takashi Iwai wrote:

> On Wed, 15 Jun 2016 15:26:34 +0200,
> Amitoj Kaur Chawla wrote:
> >
> > Replace the in order struct initialisation style with explicit field
> > style.
> >
> > The Coccinelle semantic patch used to make this change is as follows:
> >
> > @decl@
> > identifier i1,fld;
> > type T;
> > field list[n] fs;
> > @@
> >
> > struct i1 {
> >  fs
> >  T fld;
> >  ...};
> >
> > @@
> > identifier decl.i1,i2,decl.fld;
> > expression e;
> > position bad.p, bad.fix;
> > @@
> >
> > struct i1 i2@p = { ...,
> > + .fld = e
> > - e@fix
> >  ,...};
> >
> > Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
> > ---
> >  sound/usb/mixer_maps.c | 6 ++++--
> >  1 file changed, 4 insertions(+), 2 deletions(-)
> >
> > diff --git a/sound/usb/mixer_maps.c b/sound/usb/mixer_maps.c
> > index 1f8fb0d9..9038b2e 100644
> > --- a/sound/usb/mixer_maps.c
> > +++ b/sound/usb/mixer_maps.c
> > @@ -107,8 +107,10 @@ static struct usbmix_name_map extigy_map[] = {
> >   * e.g. no Master and fake PCM volume
> >   *			Pavel Mihaylov <bin@bash.info>
> >   */
> > -static struct usbmix_dB_map mp3plus_dB_1 = {-4781, 0};	/* just guess */
> > -static struct usbmix_dB_map mp3plus_dB_2 = {-1781, 618}; /* just guess */
> > +static struct usbmix_dB_map mp3plus_dB_1 = {.min = -4781, .max = 0};
> > +						/* just guess */
> > +static struct usbmix_dB_map mp3plus_dB_2 = {.min = -1781, .max = 618};
> > +						/* just guess */
>
> These are simple min/max table, so no big merit to write in such a
> way.

My understanding is that structures are going to be randomized, so at
least all global structures need C99 initialization.  Maybe Kees can
provide further clarification.

julia

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web