[ALSA] Replace with kzalloc() - seq stuff
[pandora-kernel.git] / sound / core / seq / oss / seq_oss_timer.c
index 42ca949..64d594b 100644 (file)
@@ -46,7 +46,7 @@ snd_seq_oss_timer_new(seq_oss_devinfo_t *dp)
 {
        seq_oss_timer_t *rec;
 
-       rec = kcalloc(1, sizeof(*rec), GFP_KERNEL);
+       rec = kzalloc(sizeof(*rec), GFP_KERNEL);
        if (rec == NULL)
                return NULL;