diff options
Diffstat (limited to 'drivers/bluetooth/hci_vhci.c')
-rw-r--r-- | drivers/bluetooth/hci_vhci.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/bluetooth/hci_vhci.c b/drivers/bluetooth/hci_vhci.c index 52cbd45c308f..85738223ff0c 100644 --- a/drivers/bluetooth/hci_vhci.c +++ b/drivers/bluetooth/hci_vhci.c | |||
@@ -261,12 +261,10 @@ static int vhci_open(struct inode *inode, struct file *file) | |||
261 | struct vhci_data *vhci; | 261 | struct vhci_data *vhci; |
262 | struct hci_dev *hdev; | 262 | struct hci_dev *hdev; |
263 | 263 | ||
264 | vhci = kmalloc(sizeof(struct vhci_data), GFP_KERNEL); | 264 | vhci = kzalloc(sizeof(struct vhci_data), GFP_KERNEL); |
265 | if (!vhci) | 265 | if (!vhci) |
266 | return -ENOMEM; | 266 | return -ENOMEM; |
267 | 267 | ||
268 | memset(vhci, 0, sizeof(struct vhci_data)); | ||
269 | |||
270 | skb_queue_head_init(&vhci->readq); | 268 | skb_queue_head_init(&vhci->readq); |
271 | init_waitqueue_head(&vhci->read_wait); | 269 | init_waitqueue_head(&vhci->read_wait); |
272 | 270 | ||