瀏覽代碼

Bluetooth: Remove redundant NULL check

All callers of hci_inquiry_cache_update() pass a non-NULL ssp pointer to
it and even the function itself assumes in another place that the
pointer is non-NULL. Therefore, remove the redundant check.

Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Johan Hedberg 11 年之前
父節點
當前提交
01735bbd58
共有 1 個文件被更改,包括 1 次插入2 次删除
  1. 1 2
      net/bluetooth/hci_core.c

+ 1 - 2
net/bluetooth/hci_core.c

@@ -2028,8 +2028,7 @@ bool hci_inquiry_cache_update(struct hci_dev *hdev, struct inquiry_data *data,
 
 
 	hci_remove_remote_oob_data(hdev, &data->bdaddr);
 	hci_remove_remote_oob_data(hdev, &data->bdaddr);
 
 
-	if (ssp)
-		*ssp = data->ssp_mode;
+	*ssp = data->ssp_mode;
 
 
 	ie = hci_inquiry_cache_lookup(hdev, &data->bdaddr);
 	ie = hci_inquiry_cache_lookup(hdev, &data->bdaddr);
 	if (ie) {
 	if (ie) {