Bluetooth: Minor code refactoring

This patch does a trivial code refacting in hci_discovery_active.

Signed-off-by: Andre Guedes <andre.guedes@openbossa.org>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
This commit is contained in:
Andre Guedes
2012-02-03 17:47:58 -03:00
committed by Johan Hedberg
parent c599008f8f
commit 6fbe195dc4

View File

@@ -360,12 +360,15 @@ bool hci_discovery_active(struct hci_dev *hdev)
{ {
struct discovery_state *discov = &hdev->discovery; struct discovery_state *discov = &hdev->discovery;
if (discov->state == DISCOVERY_INQUIRY || switch (discov->state) {
discov->state == DISCOVERY_LE_SCAN || case DISCOVERY_INQUIRY:
discov->state == DISCOVERY_RESOLVING) case DISCOVERY_LE_SCAN:
case DISCOVERY_RESOLVING:
return true; return true;
return false; default:
return false;
}
} }
void hci_discovery_set_state(struct hci_dev *hdev, int state) void hci_discovery_set_state(struct hci_dev *hdev, int state)