mwl8k: convert tasklets to use new tasklet_setup() API
authorAllen Pais <allen.lkml@gmail.com>
Mon, 17 Aug 2020 09:06:32 +0000 (14:36 +0530)
committerKalle Valo <kvalo@codeaurora.org>
Thu, 27 Aug 2020 13:22:10 +0000 (16:22 +0300)
In preparation for unconditionally passing the
struct tasklet_struct pointer to all tasklet
callbacks, switch to using the new tasklet_setup()
and from_tasklet() to pass the tasklet pointer explicitly.

Signed-off-by: Romain Perier <romain.perier@gmail.com>
Signed-off-by: Allen Pais <allen.lkml@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20200817090637.26887-12-allen.cryptic@gmail.com
drivers/net/wireless/marvell/mwl8k.c

index 97f23f9..23efd70 100644 (file)
@@ -4630,10 +4630,10 @@ static irqreturn_t mwl8k_interrupt(int irq, void *dev_id)
        return IRQ_HANDLED;
 }
 
-static void mwl8k_tx_poll(unsigned long data)
+static void mwl8k_tx_poll(struct tasklet_struct *t)
 {
-       struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
-       struct mwl8k_priv *priv = hw->priv;
+       struct mwl8k_priv *priv = from_tasklet(priv, t, poll_tx_task);
+       struct ieee80211_hw *hw = pci_get_drvdata(priv->pdev);
        int limit;
        int i;
 
@@ -4659,10 +4659,10 @@ static void mwl8k_tx_poll(unsigned long data)
        }
 }
 
-static void mwl8k_rx_poll(unsigned long data)
+static void mwl8k_rx_poll(struct tasklet_struct *t)
 {
-       struct ieee80211_hw *hw = (struct ieee80211_hw *)data;
-       struct mwl8k_priv *priv = hw->priv;
+       struct mwl8k_priv *priv = from_tasklet(priv, t, poll_rx_task);
+       struct ieee80211_hw *hw = pci_get_drvdata(priv->pdev);
        int limit;
 
        limit = 32;
@@ -6120,9 +6120,9 @@ static int mwl8k_firmware_load_success(struct mwl8k_priv *priv)
        INIT_WORK(&priv->fw_reload, mwl8k_hw_restart_work);
 
        /* TX reclaim and RX tasklets.  */
-       tasklet_init(&priv->poll_tx_task, mwl8k_tx_poll, (unsigned long)hw);
+       tasklet_setup(&priv->poll_tx_task, mwl8k_tx_poll);
        tasklet_disable(&priv->poll_tx_task);
-       tasklet_init(&priv->poll_rx_task, mwl8k_rx_poll, (unsigned long)hw);
+       tasklet_setup(&priv->poll_rx_task, mwl8k_rx_poll);
        tasklet_disable(&priv->poll_rx_task);
 
        /* Power management cookie */