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/bluecard_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/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; |