Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 88189c10 authored by Allen Pais's avatar Allen Pais Committed by Greg Kroah-Hartman
Browse files

drivers: usb: phy: omap: use setup_timer() helper.



   Use setup_timer function instead of initializing timer with the
   function and data fields.

Signed-off-by: default avatarAllen Pais <allen.lkml@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b0f597da
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -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;