aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@mindspring.com>2006-12-19 08:44:15 -0500
committerJaroslav Kysela <perex@suse.cz>2007-02-09 03:02:39 -0500
commitdc041e0b1fc918562aa3803cda166fee219a34d2 (patch)
tree9036beb0efeb392b166bbace4f89846594e50eda /sound
parente4c3bf0f65ec9da8b067a722f734d1012ef12ceb (diff)
[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>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/hda/patch_realtek.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
index 18bfc3993b8d..2be0ef9023b1 100644
--- a/sound/pci/hda/patch_realtek.c
+++ b/sound/pci/hda/patch_realtek.c
@@ -6590,7 +6590,7 @@ static int patch_alc262(struct hda_codec *codec)
6590 int board_config; 6590 int board_config;
6591 int err; 6591 int err;
6592 6592
6593 spec = kcalloc(1, sizeof(*spec), GFP_KERNEL); 6593 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
6594 if (spec == NULL) 6594 if (spec == NULL)
6595 return -ENOMEM; 6595 return -ENOMEM;
6596 6596
@@ -7710,7 +7710,7 @@ static int patch_alc861(struct hda_codec *codec)
7710 int board_config; 7710 int board_config;
7711 int err; 7711 int err;
7712 7712
7713 spec = kcalloc(1, sizeof(*spec), GFP_KERNEL); 7713 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
7714 if (spec == NULL) 7714 if (spec == NULL)
7715 return -ENOMEM; 7715 return -ENOMEM;
7716 7716