[ALSA] sound: Change final two instances of kcalloc(1,...) to kzalloc()
Change the two remaining instances in the tree of kcalloc(1,...) to the corresponding kzalloc() call. Signed-off-by: Robert P. J. Day <rpjday@mindspring.com> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@suse.cz>
This commit is contained in:
parent
e4c3bf0f65
commit
dc041e0b1f
|
@ -6590,7 +6590,7 @@ static int patch_alc262(struct hda_codec *codec)
|
||||||
int board_config;
|
int board_config;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
spec = kcalloc(1, sizeof(*spec), GFP_KERNEL);
|
spec = kzalloc(sizeof(*spec), GFP_KERNEL);
|
||||||
if (spec == NULL)
|
if (spec == NULL)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
|
@ -7710,7 +7710,7 @@ static int patch_alc861(struct hda_codec *codec)
|
||||||
int board_config;
|
int board_config;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
spec = kcalloc(1, sizeof(*spec), GFP_KERNEL);
|
spec = kzalloc(sizeof(*spec), GFP_KERNEL);
|
||||||
if (spec == NULL)
|
if (spec == NULL)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue