diff options
Diffstat (limited to 'drivers/bluetooth/bluecard_cs.c')
-rw-r--r-- | drivers/bluetooth/bluecard_cs.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/bluetooth/bluecard_cs.c b/drivers/bluetooth/bluecard_cs.c index 26fe9c0e1d20..f36c563d72c4 100644 --- a/drivers/bluetooth/bluecard_cs.c +++ b/drivers/bluetooth/bluecard_cs.c | |||
@@ -870,10 +870,9 @@ static dev_link_t *bluecard_attach(void) | |||
870 | int ret; | 870 | int ret; |
871 | 871 | ||
872 | /* Create new info device */ | 872 | /* Create new info device */ |
873 | info = kmalloc(sizeof(*info), GFP_KERNEL); | 873 | info = kzalloc(sizeof(*info), GFP_KERNEL); |
874 | if (!info) | 874 | if (!info) |
875 | return NULL; | 875 | return NULL; |
876 | memset(info, 0, sizeof(*info)); | ||
877 | 876 | ||
878 | link = &info->link; | 877 | link = &info->link; |
879 | link->priv = info; | 878 | link->priv = info; |