ALSA: sgio2audio: Improve a size determination in snd_sgio2audio_create()
authorMarkus Elfring <elfring@users.sourceforge.net>
Sat, 11 Nov 2017 19:02:07 +0000 (20:02 +0100)
committerTakashi Iwai <tiwai@suse.de>
Wed, 29 Nov 2017 08:29:31 +0000 (09:29 +0100)
Replace the specification of a data structure by a pointer dereference
as the parameter for the operator "sizeof" to make the corresponding size
determination a bit safer according to the Linux coding style convention.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/mips/sgio2audio.c

index 71c942162c252d6feac0edf9eb9a2534870b99de..9fb68b35de5a9cddb9ed47f5f824f947c295c890 100644 (file)
@@ -840,7 +840,7 @@ static int snd_sgio2audio_create(struct snd_card *card,
        if (!(readq(&mace->perif.audio.control) & AUDIO_CONTROL_CODEC_PRESENT))
                return -ENOENT;
 
-       chip = kzalloc(sizeof(struct snd_sgio2audio), GFP_KERNEL);
+       chip = kzalloc(sizeof(*chip), GFP_KERNEL);
        if (chip == NULL)
                return -ENOMEM;