|
@@ -2088,7 +2088,7 @@ u32 hci_inquiry_cache_update(struct hci_dev *hdev, struct inquiry_data *data,
|
|
|
}
|
|
|
|
|
|
/* Entry not in the cache. Add new one. */
|
|
|
- ie = kzalloc(sizeof(struct inquiry_entry), GFP_KERNEL);
|
|
|
+ ie = kzalloc(sizeof(*ie), GFP_KERNEL);
|
|
|
if (!ie) {
|
|
|
flags |= MGMT_DEV_FOUND_CONFIRM_NAME;
|
|
|
goto done;
|
|
@@ -3492,7 +3492,7 @@ int hci_bdaddr_list_add(struct list_head *list, bdaddr_t *bdaddr, u8 type)
|
|
|
if (hci_bdaddr_list_lookup(list, bdaddr, type))
|
|
|
return -EEXIST;
|
|
|
|
|
|
- entry = kzalloc(sizeof(struct bdaddr_list), GFP_KERNEL);
|
|
|
+ entry = kzalloc(sizeof(*entry), GFP_KERNEL);
|
|
|
if (!entry)
|
|
|
return -ENOMEM;
|
|
|
|
|
@@ -3897,7 +3897,7 @@ struct hci_dev *hci_alloc_dev(void)
|
|
|
{
|
|
|
struct hci_dev *hdev;
|
|
|
|
|
|
- hdev = kzalloc(sizeof(struct hci_dev), GFP_KERNEL);
|
|
|
+ hdev = kzalloc(sizeof(*hdev), GFP_KERNEL);
|
|
|
if (!hdev)
|
|
|
return NULL;
|
|
|
|