Commit 9ddabb05 authored by Wolfram Sang's avatar Wolfram Sang Committed by Ben Dooks

i2c: pnx: Fix crash due to wrong init of timer->data

alg_data is already a pointer which must be passed directly.
Reported-by: default avatarDieter Ripp <ripp@systecnet.com>
Signed-off-by: default avatarWolfram Sang <w.sang@pengutronix.de>
Cc: Russell King <linux@arm.linux.org.uk>
Cc: Ben Dooks <ben-i2c@fluff.org>
Signed-off-by: default avatarBen Dooks <ben-linux@fluff.org>
parent ca1376d1
......@@ -65,7 +65,7 @@ static inline void i2c_pnx_arm_timer(struct i2c_pnx_algo_data *alg_data)
jiffies, expires);
timer->expires = jiffies + expires;
timer->data = (unsigned long)&alg_data;
timer->data = (unsigned long)alg_data;
add_timer(timer);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment