The params variable was just used for storing the return value from the
hci_pend_le_action_lookup() function and then checking whether it's NULL
or not. We can simplify the code by checking the return value directly.
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
         * device found events.
         */
        if (hdev->le_scan_type == LE_SCAN_PASSIVE) {
-               struct hci_conn_params *param;
-
                if (type == LE_ADV_DIRECT_IND)
                        return;
 
-               param = hci_pend_le_action_lookup(&hdev->pend_le_reports,
-                                                 bdaddr, bdaddr_type);
-               if (!param)
+               if (!hci_pend_le_action_lookup(&hdev->pend_le_reports,
+                                              bdaddr, bdaddr_type))
                        return;
 
                if (type == LE_ADV_NONCONN_IND || type == LE_ADV_SCAN_IND)