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/hci_h4.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/hci_h4.c')
-rw-r--r-- | drivers/bluetooth/hci_h4.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/bluetooth/hci_h4.c b/drivers/bluetooth/hci_h4.c index 12e369a66fc2..4804d474dc87 100644 --- a/drivers/bluetooth/hci_h4.c +++ b/drivers/bluetooth/hci_h4.c | |||
@@ -76,12 +76,10 @@ static int h4_open(struct hci_uart *hu) | |||
76 | 76 | ||
77 | BT_DBG("hu %p", hu); | 77 | BT_DBG("hu %p", hu); |
78 | 78 | ||
79 | h4 = kmalloc(sizeof(*h4), GFP_ATOMIC); | 79 | h4 = kzalloc(sizeof(*h4), GFP_ATOMIC); |
80 | if (!h4) | 80 | if (!h4) |
81 | return -ENOMEM; | 81 | return -ENOMEM; |
82 | 82 | ||
83 | memset(h4, 0, sizeof(*h4)); | ||
84 | |||
85 | skb_queue_head_init(&h4->txq); | 83 | skb_queue_head_init(&h4->txq); |
86 | 84 | ||
87 | hu->priv = h4; | 85 | hu->priv = h4; |