diff options
author | Deepak Saxena <dsaxena@plexity.net> | 2005-11-07 04:01:26 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-07 10:54:00 -0500 |
commit | 089b1dbbde28f0f641c20beabba28fa89ab4fab9 (patch) | |
tree | d95a59688897569f2aa875ec5a9576caaedfc2cc /drivers/bluetooth/dtl1_cs.c | |
parent | f5e3c2faa20615e900ab26bd957f898400435924 (diff) |
[PATCH] bluetooth: kmalloc + memset -> kzalloc conversion
Signed-off-by: Deepak Saxena <dsaxena@plexity.net>
Cc: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
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; |