diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2009-11-17 19:02:54 -0500 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2009-12-03 13:34:21 -0500 |
commit | c78ae283145d3a8799b2fb01650166a66af3bff8 (patch) | |
tree | 1da35006397e33e1ff9f3941a19a6cb2aa585c75 /net/bluetooth/hci_event.c | |
parent | 76bca88012e1d27de794f32cc551d6314d38b6d9 (diff) |
Bluetooth: Unobfuscate tasklet_schedule usage
The tasklet schedule function helpers are just an obfuscation. So remove
them and call the schedule functions directly.
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth/hci_event.c')
-rw-r--r-- | net/bluetooth/hci_event.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index e99fe385fba2..28517bad796c 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c | |||
@@ -1320,7 +1320,7 @@ static inline void hci_cmd_complete_evt(struct hci_dev *hdev, struct sk_buff *sk | |||
1320 | if (ev->ncmd) { | 1320 | if (ev->ncmd) { |
1321 | atomic_set(&hdev->cmd_cnt, 1); | 1321 | atomic_set(&hdev->cmd_cnt, 1); |
1322 | if (!skb_queue_empty(&hdev->cmd_q)) | 1322 | if (!skb_queue_empty(&hdev->cmd_q)) |
1323 | hci_sched_cmd(hdev); | 1323 | tasklet_schedule(&hdev->cmd_task); |
1324 | } | 1324 | } |
1325 | } | 1325 | } |
1326 | 1326 | ||
@@ -1386,7 +1386,7 @@ static inline void hci_cmd_status_evt(struct hci_dev *hdev, struct sk_buff *skb) | |||
1386 | if (ev->ncmd) { | 1386 | if (ev->ncmd) { |
1387 | atomic_set(&hdev->cmd_cnt, 1); | 1387 | atomic_set(&hdev->cmd_cnt, 1); |
1388 | if (!skb_queue_empty(&hdev->cmd_q)) | 1388 | if (!skb_queue_empty(&hdev->cmd_q)) |
1389 | hci_sched_cmd(hdev); | 1389 | tasklet_schedule(&hdev->cmd_task); |
1390 | } | 1390 | } |
1391 | } | 1391 | } |
1392 | 1392 | ||
@@ -1454,7 +1454,7 @@ static inline void hci_num_comp_pkts_evt(struct hci_dev *hdev, struct sk_buff *s | |||
1454 | } | 1454 | } |
1455 | } | 1455 | } |
1456 | 1456 | ||
1457 | hci_sched_tx(hdev); | 1457 | tasklet_schedule(&hdev->tx_task); |
1458 | 1458 | ||
1459 | tasklet_enable(&hdev->tx_task); | 1459 | tasklet_enable(&hdev->tx_task); |
1460 | } | 1460 | } |