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

Commit 879bce22 authored by Geliang Tang's avatar Geliang Tang Committed by Wolfram Sang
Browse files

i2c: img-scb: use setup_timer



Use setup_timer() instead of init_timer() to simplify the code.

Signed-off-by: default avatarGeliang Tang <geliangtang@gmail.com>
Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
parent e058e7a4
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -1362,9 +1362,8 @@ static int img_i2c_probe(struct platform_device *pdev)
	}

	/* Set up the exception check timer */
	init_timer(&i2c->check_timer);
	i2c->check_timer.function = img_i2c_check_timer;
	i2c->check_timer.data = (unsigned long)i2c;
	setup_timer(&i2c->check_timer, img_i2c_check_timer,
		    (unsigned long)i2c);

	i2c->bitrate = timings[0].max_bitrate;
	if (!of_property_read_u32(node, "clock-frequency", &val))