Replace the wakeable boolean with flags in hci_conn_params and all users
of this boolean. This will be used by the get/set device flags mgmt op.
Signed-off-by: Abhishek Pandit-Subedi <abhishekpandit@chromium.org>
Reviewed-by: Alain Michaud <alainm@chromium.org>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
 
        struct hci_conn *conn;
        bool explicit_connect;
-       bool wakeable;
+       u32 current_flags;
 };
 
 extern struct list_head hci_dev_list;
 
        }
 
        /* During suspend, only wakeable devices can be in whitelist */
-       if (hdev->suspended && !params->wakeable)
+       if (hdev->suspended && !hci_conn_test_flag(HCI_CONN_FLAG_REMOTE_WAKEUP,
+                                                  params->current_flags))
                return 0;
 
        *num_entries += 1;