diff options
Diffstat (limited to 'sound/oss/ad1889.c')
-rw-r--r-- | sound/oss/ad1889.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/oss/ad1889.c b/sound/oss/ad1889.c index f0724327493c..c0730a3563a2 100644 --- a/sound/oss/ad1889.c +++ b/sound/oss/ad1889.c | |||
@@ -230,9 +230,8 @@ static ad1889_dev_t *ad1889_alloc_dev(struct pci_dev *pci) | |||
230 | struct dmabuf *dmabuf; | 230 | struct dmabuf *dmabuf; |
231 | int i; | 231 | int i; |
232 | 232 | ||
233 | if ((dev = kmalloc(sizeof(ad1889_dev_t), GFP_KERNEL)) == NULL) | 233 | if ((dev = kzalloc(sizeof(ad1889_dev_t), GFP_KERNEL)) == NULL) |
234 | return NULL; | 234 | return NULL; |
235 | memset(dev, 0, sizeof(ad1889_dev_t)); | ||
236 | spin_lock_init(&dev->lock); | 235 | spin_lock_init(&dev->lock); |
237 | dev->pci = pci; | 236 | dev->pci = pci; |
238 | 237 | ||