* is not ONGOING (TX might be stuck in ONGOING due to a harwrware bug
  * for single shot)
  */
-static void grcan_running_reset(unsigned long data)
+static void grcan_running_reset(struct timer_list *t)
 {
-       struct net_device *dev = (struct net_device *)data;
-       struct grcan_priv *priv = netdev_priv(dev);
+       struct grcan_priv *priv = from_timer(priv, t, rr_timer);
+       struct net_device *dev = priv->dev;
        struct grcan_registers __iomem *regs = priv->regs;
        unsigned long flags;
 
 }
 
 /* Disable channels and schedule a running reset */
-static void grcan_initiate_running_reset(unsigned long data)
+static void grcan_initiate_running_reset(struct timer_list *t)
 {
-       struct net_device *dev = (struct net_device *)data;
-       struct grcan_priv *priv = netdev_priv(dev);
+       struct grcan_priv *priv = from_timer(priv, t, hang_timer);
+       struct net_device *dev = priv->dev;
        struct grcan_registers __iomem *regs = priv->regs;
        unsigned long flags;
 
        spin_lock_init(&priv->lock);
 
        if (priv->need_txbug_workaround) {
-               setup_timer(&priv->rr_timer, grcan_running_reset,
-                           (unsigned long)dev);
-
-               setup_timer(&priv->hang_timer, grcan_initiate_running_reset,
-                           (unsigned long)dev);
+               timer_setup(&priv->rr_timer, grcan_running_reset, 0);
+               timer_setup(&priv->hang_timer, grcan_initiate_running_reset, 0);
        }
 
        netif_napi_add(dev, &priv->napi, grcan_poll, GRCAN_NAPI_WEIGHT);
 
 /*
  * set leds state according to channel activity
  */
-static void pcan_led_timer(unsigned long arg)
+static void pcan_led_timer(struct timer_list *t)
 {
-       struct pcan_pccard *card = (struct pcan_pccard *)arg;
+       struct pcan_pccard *card = from_timer(card, t, led_timer);
        struct net_device *netdev;
        int i, up_count = 0;
        u8 ccr;
        }
 
        /* init the timer which controls the leds */
-       setup_timer(&card->led_timer, pcan_led_timer, (unsigned long)card);
+       timer_setup(&card->led_timer, pcan_led_timer, 0);
 
        /* request the given irq */
        err = request_irq(pdev->irq, &pcan_isr, IRQF_SHARED, PCC_NAME, card);
 
 /*
  * handle end of waiting for the device to reset
  */
-static void pcan_usb_restart(unsigned long arg)
+static void pcan_usb_restart(struct timer_list *t)
 {
+       struct pcan_usb *pdev = from_timer(pdev, t, restart_timer);
+       struct peak_usb_device *dev = &pdev->dev;
+
        /* notify candev and netdev */
-       peak_usb_restart_complete((struct peak_usb_device *)arg);
+       peak_usb_restart_complete(dev);
 }
 
 /*
        int err;
 
        /* initialize a timer needed to wait for hardware restart */
-       setup_timer(&pdev->restart_timer, pcan_usb_restart,
-                   (unsigned long)dev);
+       timer_setup(&pdev->restart_timer, pcan_usb_restart, 0);
 
        /*
         * explicit use of dev_xxx() instead of netdev_xxx() here: