]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
drivers: usb: phy: omap: use setup_timer() helper.
authorAllen Pais <allen.lkml@gmail.com>
Fri, 22 Sep 2017 08:59:36 +0000 (14:29 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 4 Oct 2017 07:59:29 +0000 (09:59 +0200)
   Use setup_timer function instead of initializing timer with the
   function and data fields.

Signed-off-by: Allen Pais <allen.lkml@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/phy/phy-isp1301-omap.c

index 718026bed1b6b70615f0bb3613a49a21e469493d..8a07ce63b92dd451c9a2931a33acabcd70265034 100644 (file)
@@ -1506,9 +1506,7 @@ isp1301_probe(struct i2c_client *i2c, const struct i2c_device_id *id)
        }
 
        INIT_WORK(&isp->work, isp1301_work);
-       init_timer(&isp->timer);
-       isp->timer.function = isp1301_timer;
-       isp->timer.data = (unsigned long) isp;
+       setup_timer(&isp->timer, isp1301_timer, (unsigned long)isp);
 
        i2c_set_clientdata(i2c, isp);
        isp->client = i2c;