diff options
Diffstat (limited to 'sound/oss/ac97_codec.c')
-rw-r--r-- | sound/oss/ac97_codec.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/oss/ac97_codec.c b/sound/oss/ac97_codec.c index 602db497929a..fef56cac06c8 100644 --- a/sound/oss/ac97_codec.c +++ b/sound/oss/ac97_codec.c | |||
@@ -744,11 +744,10 @@ static int ac97_check_modem(struct ac97_codec *codec) | |||
744 | 744 | ||
745 | struct ac97_codec *ac97_alloc_codec(void) | 745 | struct ac97_codec *ac97_alloc_codec(void) |
746 | { | 746 | { |
747 | struct ac97_codec *codec = kmalloc(sizeof(struct ac97_codec), GFP_KERNEL); | 747 | struct ac97_codec *codec = kzalloc(sizeof(struct ac97_codec), GFP_KERNEL); |
748 | if(!codec) | 748 | if(!codec) |
749 | return NULL; | 749 | return NULL; |
750 | 750 | ||
751 | memset(codec, 0, sizeof(*codec)); | ||
752 | spin_lock_init(&codec->lock); | 751 | spin_lock_init(&codec->lock); |
753 | INIT_LIST_HEAD(&codec->list); | 752 | INIT_LIST_HEAD(&codec->list); |
754 | return codec; | 753 | return codec; |