Loading include/net/bluetooth/hci_core.h +1 −1 Original line number Original line Diff line number Diff line Loading @@ -1094,7 +1094,7 @@ void hci_sock_dev_event(struct hci_dev *hdev, int event); int mgmt_control(struct sock *sk, struct msghdr *msg, size_t len); int mgmt_control(struct sock *sk, struct msghdr *msg, size_t len); void mgmt_index_added(struct hci_dev *hdev); void mgmt_index_added(struct hci_dev *hdev); void mgmt_index_removed(struct hci_dev *hdev); void mgmt_index_removed(struct hci_dev *hdev); int mgmt_set_powered_failed(struct hci_dev *hdev, int err); void mgmt_set_powered_failed(struct hci_dev *hdev, int err); int mgmt_powered(struct hci_dev *hdev, u8 powered); int mgmt_powered(struct hci_dev *hdev, u8 powered); int mgmt_discoverable(struct hci_dev *hdev, u8 discoverable); int mgmt_discoverable(struct hci_dev *hdev, u8 discoverable); int mgmt_connectable(struct hci_dev *hdev, u8 connectable); int mgmt_connectable(struct hci_dev *hdev, u8 connectable); Loading net/bluetooth/mgmt.c +3 −5 Original line number Original line Diff line number Diff line Loading @@ -3934,25 +3934,23 @@ int mgmt_powered(struct hci_dev *hdev, u8 powered) return err; return err; } } int mgmt_set_powered_failed(struct hci_dev *hdev, int err) void mgmt_set_powered_failed(struct hci_dev *hdev, int err) { { struct pending_cmd *cmd; struct pending_cmd *cmd; u8 status; u8 status; cmd = mgmt_pending_find(MGMT_OP_SET_POWERED, hdev); cmd = mgmt_pending_find(MGMT_OP_SET_POWERED, hdev); if (!cmd) if (!cmd) return -ENOENT; return; if (err == -ERFKILL) if (err == -ERFKILL) status = MGMT_STATUS_RFKILLED; status = MGMT_STATUS_RFKILLED; else else status = MGMT_STATUS_FAILED; status = MGMT_STATUS_FAILED; err = cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_POWERED, status); cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_POWERED, status); mgmt_pending_remove(cmd); mgmt_pending_remove(cmd); return err; } } int mgmt_discoverable(struct hci_dev *hdev, u8 discoverable) int mgmt_discoverable(struct hci_dev *hdev, u8 discoverable) Loading Loading
include/net/bluetooth/hci_core.h +1 −1 Original line number Original line Diff line number Diff line Loading @@ -1094,7 +1094,7 @@ void hci_sock_dev_event(struct hci_dev *hdev, int event); int mgmt_control(struct sock *sk, struct msghdr *msg, size_t len); int mgmt_control(struct sock *sk, struct msghdr *msg, size_t len); void mgmt_index_added(struct hci_dev *hdev); void mgmt_index_added(struct hci_dev *hdev); void mgmt_index_removed(struct hci_dev *hdev); void mgmt_index_removed(struct hci_dev *hdev); int mgmt_set_powered_failed(struct hci_dev *hdev, int err); void mgmt_set_powered_failed(struct hci_dev *hdev, int err); int mgmt_powered(struct hci_dev *hdev, u8 powered); int mgmt_powered(struct hci_dev *hdev, u8 powered); int mgmt_discoverable(struct hci_dev *hdev, u8 discoverable); int mgmt_discoverable(struct hci_dev *hdev, u8 discoverable); int mgmt_connectable(struct hci_dev *hdev, u8 connectable); int mgmt_connectable(struct hci_dev *hdev, u8 connectable); Loading
net/bluetooth/mgmt.c +3 −5 Original line number Original line Diff line number Diff line Loading @@ -3934,25 +3934,23 @@ int mgmt_powered(struct hci_dev *hdev, u8 powered) return err; return err; } } int mgmt_set_powered_failed(struct hci_dev *hdev, int err) void mgmt_set_powered_failed(struct hci_dev *hdev, int err) { { struct pending_cmd *cmd; struct pending_cmd *cmd; u8 status; u8 status; cmd = mgmt_pending_find(MGMT_OP_SET_POWERED, hdev); cmd = mgmt_pending_find(MGMT_OP_SET_POWERED, hdev); if (!cmd) if (!cmd) return -ENOENT; return; if (err == -ERFKILL) if (err == -ERFKILL) status = MGMT_STATUS_RFKILLED; status = MGMT_STATUS_RFKILLED; else else status = MGMT_STATUS_FAILED; status = MGMT_STATUS_FAILED; err = cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_POWERED, status); cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_POWERED, status); mgmt_pending_remove(cmd); mgmt_pending_remove(cmd); return err; } } int mgmt_discoverable(struct hci_dev *hdev, u8 discoverable) int mgmt_discoverable(struct hci_dev *hdev, u8 discoverable) Loading