From: Johan Hedberg Date: Tue, 15 Jul 2014 05:07:59 +0000 (+0300) Subject: Bluetooth: Remove unnecessary params variable from process_adv_report() X-Git-Tag: v4.14-rc1~7092^2~12^2~41^2~36 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3a19b6feb26295fe03c9242a72084d2f32dcaac4;p=platform%2Fkernel%2Flinux-rpi.git Bluetooth: Remove unnecessary params variable from process_adv_report() 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 Signed-off-by: Marcel Holtmann --- diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index 8980bd2..bf2926b 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -4314,14 +4314,11 @@ static void process_adv_report(struct hci_dev *hdev, u8 type, bdaddr_t *bdaddr, * 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)