dev_dbg(printdev(devrec), "remove\n");
free_irq(spi->irq, devrec);
- flush_work_sync(&devrec->irqwork); /* TODO: Is this the right call? */
+ flush_work(&devrec->irqwork); /* TODO: Is this the right call? */
ieee802154_unregister_device(devrec->dev);
ieee802154_free_device(devrec->dev);
/* TODO: Will ieee802154_free_device() wait until ->xmit() is
{
struct nfc_dev *dev = (struct nfc_dev *)data;
- queue_work(system_nrt_wq, &dev->check_pres_work);
+ schedule_work(&dev->check_pres_work);
}
struct class nfc_class = {
kfree(hdev->cmd_pending_msg);
hdev->cmd_pending_msg = NULL;
- queue_work(system_nrt_wq, &hdev->msg_tx_work);
+ schedule_work(&hdev->msg_tx_work);
}
void nfc_hci_resp_received(struct nfc_hci_dev *hdev, u8 result,
{
struct nfc_hci_dev *hdev = (struct nfc_hci_dev *)data;
- queue_work(system_nrt_wq, &hdev->msg_tx_work);
+ schedule_work(&hdev->msg_tx_work);
}
static int hci_dev_connect_gates(struct nfc_hci_dev *hdev, u8 gate_count,
nfc_hci_hcp_message_rx(hdev, pipe, type, instruction, hcp_skb);
} else {
skb_queue_tail(&hdev->msg_rx_queue, hcp_skb);
- queue_work(system_nrt_wq, &hdev->msg_rx_work);
+ schedule_work(&hdev->msg_rx_work);
}
}
list_add_tail(&cmd->msg_l, &hdev->msg_tx_queue);
mutex_unlock(&hdev->msg_tx_mutex);
- queue_work(system_nrt_wq, &hdev->msg_tx_work);
+ schedule_work(&hdev->msg_tx_work);
return 0;
pr_debug("\n");
- queue_work(system_nrt_wq, &shdlc->sm_work);
+ schedule_work(&shdlc->sm_work);
}
static void llc_shdlc_t1_timeout(unsigned long data)
pr_debug("SoftIRQ: need to send ack\n");
- queue_work(system_nrt_wq, &shdlc->sm_work);
+ schedule_work(&shdlc->sm_work);
}
static void llc_shdlc_t2_timeout(unsigned long data)
pr_debug("SoftIRQ: need to retransmit\n");
- queue_work(system_nrt_wq, &shdlc->sm_work);
+ schedule_work(&shdlc->sm_work);
}
static void llc_shdlc_sm_work(struct work_struct *work)
case SHDLC_NEGOTIATING:
if (timer_pending(&shdlc->connect_timer) == 0) {
shdlc->state = SHDLC_CONNECTING;
- queue_work(system_nrt_wq, &shdlc->sm_work);
+ schedule_work(&shdlc->sm_work);
}
llc_shdlc_handle_rcv_queue(shdlc);
mutex_unlock(&shdlc->state_mutex);
- queue_work(system_nrt_wq, &shdlc->sm_work);
+ schedule_work(&shdlc->sm_work);
wait_event(connect_wq, shdlc->connect_result != 1);
mutex_unlock(&shdlc->state_mutex);
- queue_work(system_nrt_wq, &shdlc->sm_work);
+ schedule_work(&shdlc->sm_work);
}
/*
skb_queue_tail(&shdlc->rcv_q, skb);
}
- queue_work(system_nrt_wq, &shdlc->sm_work);
+ schedule_work(&shdlc->sm_work);
}
static void *llc_shdlc_init(struct nfc_hci_dev *hdev, xmit_to_drv_t xmit_to_drv,
skb_queue_tail(&shdlc->send_q, skb);
- queue_work(system_nrt_wq, &shdlc->sm_work);
+ schedule_work(&shdlc->sm_work);
return 0;
}
pr_err("SYMM timeout\n");
- queue_work(system_nrt_wq, &local->timeout_work);
+ schedule_work(&local->timeout_work);
}
struct nfc_llcp_local *nfc_llcp_find_local(struct nfc_dev *dev)
}
- queue_work(system_nrt_wq, &local->tx_work);
+ schedule_work(&local->tx_work);
kfree_skb(local->rx_pending);
local->rx_pending = NULL;
local->rx_pending = skb_get(skb);
del_timer(&local->link_timer);
- queue_work(system_nrt_wq, &local->rx_work);
+ schedule_work(&local->rx_work);
return;
}
local->rx_pending = skb_get(skb);
del_timer(&local->link_timer);
- queue_work(system_nrt_wq, &local->rx_work);
+ schedule_work(&local->rx_work);
return 0;
}
if (rf_mode == NFC_RF_INITIATOR) {
pr_debug("Queueing Tx work\n");
- queue_work(system_nrt_wq, &local->tx_work);
+ schedule_work(&local->tx_work);
} else {
mod_timer(&local->link_timer,
jiffies + msecs_to_jiffies(local->remote_lto));