diff options
Diffstat (limited to 'drivers/bluetooth/dtl1_cs.c')
-rw-r--r-- | drivers/bluetooth/dtl1_cs.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/bluetooth/dtl1_cs.c b/drivers/bluetooth/dtl1_cs.c index 84c1f8839422..dec5980a1cd6 100644 --- a/drivers/bluetooth/dtl1_cs.c +++ b/drivers/bluetooth/dtl1_cs.c | |||
@@ -569,10 +569,9 @@ static dev_link_t *dtl1_attach(void) | |||
569 | int ret; | 569 | int ret; |
570 | 570 | ||
571 | /* Create new info device */ | 571 | /* Create new info device */ |
572 | info = kmalloc(sizeof(*info), GFP_KERNEL); | 572 | info = kzalloc(sizeof(*info), GFP_KERNEL); |
573 | if (!info) | 573 | if (!info) |
574 | return NULL; | 574 | return NULL; |
575 | memset(info, 0, sizeof(*info)); | ||
576 | 575 | ||
577 | link = &info->link; | 576 | link = &info->link; |
578 | link->priv = info; | 577 | link->priv = info; |